-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (100 loc) · 2.11 KB
/
Copy pathstyle.css
File metadata and controls
117 lines (100 loc) · 2.11 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
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
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 400;
src: local('Oxygen'), local('Oxygen-Regular'), url(http://themes.googleusercontent.com/static/fonts/oxygen/v2/OFgyER5uFw7Cy-F01PjbVg.woff) format('woff');
}
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 700;
src: local('Oxygen Bold'), local('Oxygen-Bold'), url(http://themes.googleusercontent.com/static/fonts/oxygen/v2/fSUtikcZd7PHZK0t2hzTeT8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
body {
margin: 0;
font-family: 'Oxygen', sans-serif;
}
#head {
height: 40px;
line-height: 40px;
font-size: 28px;
}
#head .inner {
width: 960px;
margin: auto;
}
#m2014 {
font-weight: bold;
float: left;
}
#clock {
font-size: 20px;
float: right;
color: #888;
}
#body {
width: 100%;
overflow: hidden;
}
#body .inner {
width: 100%;
padding: 20px;
margin: 0 -20px;
box-shadow: inset 0 0 7px #333;
background: url("img/kindajean.png") repeat scroll 0 0 #EEE;
}
#flag {
height: 400px;
width: 960px;
background-color: #EF4135;
box-shadow: 1px 1px 5px #555;
margin: 40px auto;
overflow: hidden;
}
#flag > * {
width: 30px;
height: 400px;
float: left;
transition: width 1s;
-moz-transition: width 1s; /* Firefox 4 */
-webkit-transition: width 1s; /* Safari and Chrome */
-o-transition: width 1s; /* Opera */
cursor: pointer;
overflow: hidden;
position: relative;
}
#flag .red {
color: white;
background-color: #EF4135;
}
#flag .white {
color: #888;
background-color: white;
}
#flag .blue {
color: white;
background-color: #0055A4;
}
#flag.red .red, #flag.blue .blue, #flag.white .white {
width: 900px;
}
#foot {
margin: 0 auto;
text-align: center;
font-size: 14px;
line-height: 2em;
}
#foot input {
text-align: center;
width: 300px;
}
#foot button {
display: inline-block;
}
#contact .thanks {
display: none;
font-weight: bold;
line-height: 4em;
}
#contact.sent .thanks { display: block }
#contact.sent form { display: none }