-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
102 lines (86 loc) · 1.31 KB
/
main.css
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
90
91
92
93
94
95
96
97
98
99
100
101
102
div {
padding-bottom: 1px;
}
h1 {
text-align: left;
font-family: 'Quicksand', sans-serif;
letter-spacing: 6px;
font-size: 36px;
}
h2 {
text-align: left;
}
h2 span {
font-family: 'Quicksand', sans-serif;
letter-spacing: 1px;
font-size: 20px;
color: #FFFFFF;
background-color: #a4d5da;
font-weight: 100;
padding: 3px;
}
h3 {
color: #737373;
font-weight: 900;
text-align: left;
font-family: 'Quicksand', sans-serif;
font-size: 16px;
}
h3 span {
text-align: left;
font-family: 'Quicksand', sans-serif;
font-weight: 100;
font-size: 14px;
letter-spacing: 1px;
}
h4 {
text-align: left;
font-family: 'Quicksand', sans-serif;
font-weight: 100;
font-size: 14px;
}
a {
color: black;
text-decoration: none;
border-bottom: 1px solid lightgray;
}
a:hover {
background-color: #dbf8fc;
}
#bio {
text-align: left;
letter-spacing: 1px;
color: #737373;
}
#body {
width: 70%;
margin: auto;
}
#footer {
text-align: center;
font-family: 'Quicksand', sans-serif;
font-size: 12px;
color: #737373;
}
.sub {
color: #737373;
padding-left: 20px;
}
.link {
text-decoration: none;
border: none;
color: #737373;
}
a.link:hover {
color: #6fbac4;
background-color: transparent;
}
img {
width: 100%;
}
@media only screen and (max-width: 750px) {
/* For mobile phones: */
#body {
width: 90%;
}
}