-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (73 loc) · 1.14 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (73 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Colors and fonts */
body {
background: #F6F9FC;
color: #647382;
font-family: 'Lora', serif;
font-size: 17px;
font-weight: lighter;
}
h1, h2, h3 {
font-family: 'Roboto', sans-serif;
}
h1 {
color: rgb(10,37,64);
font-size: 32px;
font-weight: 700px;
}
h2 {
color: rgb(100, 177, 45);
font-size: 24px;
font-weight: 300;
}
a {
text-decoration: none;
color: #6971FD;
font-weight: bold;
}
.container {
width: 700px;
margin: 40px auto;
}
.card-white {
background-color: white;
padding: 50px;
border-radius: 4px;
margin: 20px 0px;
box-shadow: 0 10px 30px rgba(0,0,0,.1);
border-radius: 5px;
text-align: center;
}
.btn-blue {
background-color: #6971FD;
padding: 15px 20px;
color: white;
border-radius: 5px;
}
.btn-blue:hover {
background-color: black;
color: white;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline li {
display: inline;
padding: 10px;
}
.list-inline i {
font-size: 50px;
color: #6971FD
}
.list-inline i:hover {
color: black;
}
#bio p {
margin-bottom: 40px;
}
@media (max-width: 500px) {
.container {
background-color: red;
width: 400px;
}
}