-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
64 lines (54 loc) · 873 Bytes
/
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
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.wrapper {
width: 75%;
margin: 0 auto;
}
header,
nav,
section,
buttonSection {
border: 1px solid rgba(255,255,255,0.8);
margin-bottom: 10px;
border-radius: 3px;
}
nav, section, phillipSection, buttonSection {
float: left;
}
section, phillipSection, buttonSection {
width: 85%;
}
section, phillipSection {
padding-top: 17px;
}
body {
background: #010108;
color: #FFF;
font-family: Helvetica;
text-align: center;
margin: 0;
}
phillipSection {
border: 1px solid rgba(255,255,255,0.8);
margin-bottom: 1px;
border-radius: 3px;
}
nav {
text-align: center;
padding-bottom: 30%;
padding-top: 7.5%;
width: 15%;
}
a {
color: #f6b3e5;
}
buttonSection{
padding: 2.5%;
}
header {
width: 100%;
padding: 2.5% 0;
}