-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
79 lines (61 loc) · 848 Bytes
/
main.css
File metadata and controls
79 lines (61 loc) · 848 Bytes
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
html, body {
font-family: 'Open Sans', sans-serif;
max-width: 100%;
}
h1 {
font-size: 4em;
font-weight: 700;
}
h2 {
font-size: 1.1em;
text-transform: uppercase;
font-weight: 700;
margin-bottom: -10px;
opacity: 0.5;
}
h3 {
font-weight: 700;
font-size: 1.7em;
}
h4 {
font-weight: 300;
}
p {
font-size: 1.1em;
}
a {
color: #444444;
-webkit-transition: 0.2s all;
}
a:hover {
color: #FFB400;
-webkit-transition: 0.2s all;
text-decoration: none;
}
footer {
padding-top: 30px;
padding-bottom: 5px;
font-weight: 500;
opacity: 0.5;
}
#info {
padding-top: 23px;
}
.container {
margin: 10px;
}
@media(max-width: 720px){
body {
margin: 0%;
}
#info {
padding-top: 4px;
float: none;
}
}
/*---Tablet---*/
@media only screen and (min-width: 720px) {
body {
margin: 10%;
}
}