-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
125 lines (105 loc) · 1.92 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display: block;
}
html {
margin: 0;
padding: 0;
}
body {
margin: 0 auto;
padding: 0;
width: 960px;
height: auto;
}
body header {
margin: 0;
padding: 0;
background-color: white;
}
body header hgroup {
font-family: 'Poiret One', sans-serif;
width: 475px;
margin: 0;
padding: 20px;
float: left;
}
body header hgroup h1 {
text-transform: uppercase;
font-size: 30px;
font-weight: 200;
padding-bottom: 0;
margin-bottom: 0;
}
body header hgroup h2{
font-size: 80px;
font-weight: 300;
padding: 0;
margin: 0;
}
body header hgroup h3{
text-transform: lowercase;
text-align: right;
font-size: 40px;
font-weight: 200;
padding: 0;
margin: 0;
}
body header img {
width: 280px;
padding: 20px;
margin: 0;
float: right;
}
body .clear {
clear: both;
padding: 0;
margin: 0;
}
body section {
width: 280px;
padding: 20px;
float: left;
text-align: center;
}
body section:hover {
/* CSS3 browser specific features, may not validate. Also rgba box shadow generates known error */
-moz-box-shadow: 0 0 5px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.2);
box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
body section h1 {
font-family: 'Armata', sans-serif;
width: 280px;
margin-bottom: 10px;
margin-top: 10px;
font-size: 30px;
font-weight: 200;
}
body section p {
font-family: 'Lora', serif;
font-size: 14px;
width: 280px;
margin: 0;
margin-bottom: 10px;
}
body section ul {
margin: 0;
padding-left: 0;
width: 280px;
}
body section ul li {
font-family: 'Lora', serif;
font-size: 14px;
list-style: none;
padding-bottom: 10px;
}
body section ul li a img:hover {
/* CSS3 browser specific features, may not validate. Also rgba box shadow generates known error*/
-moz-box-shadow: 0 0 4px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2);
box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
body footer {
clear: both;
}