-
Notifications
You must be signed in to change notification settings - Fork 0
/
window.css
154 lines (131 loc) · 2.28 KB
/
window.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
body {
font-family: Helvetica;
background: url('img/bg.png');
font-size: 10px;
width: 640px;
margin: 100px auto;
}
/*
* HEADER BAR
* ---------------------------------- */
#headbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #F7F7F7;
border-bottom: 4px solid #F8BF27;
font-size: 14px;
box-shadow: 0 2px 15px rgba(0,0,0,0.25);
}
#headbar > .content {
width: 800px;
height: 60px;
line-height: 60px;
margin: 0 auto;
}
#headbar .logo {
float: left;
height: 60px;
width: 60px;
margin-bottom: -10px;
border-radius: 50%;
border: 5px solid #F8BF27;
overflow: hidden;
}
#headbar .logo img {
max-height: 100px;
}
#headbar h1 {
float: left;
padding-left: 20px;
margin: 0;
color: #F8BF27;
font-size: 1.7em;
text-shadow: 1px 1px 0px #FFF, 2px 2px 0px #F8BF27;
}
#headbar ul {
float: right;
overflow: hidden;
list-style: none;
padding: 0;
margin: 0;
}
#headbar ul li {
float: left;
}
#headbar ul li a {
display: block;
padding: 0 10px;
font-family: Verdana;
color: #444;
text-decoration: none;
-webkit-transition: .5s;
}
#headbar ul li a:after {
content: "";
position: absolute;
bottom: -8px;
margin: 0 auto;
width: 8px;
height: 8px;
border-top: 4px solid #F8BF27;
border-right: 4px solid #F8BF27;
-webkit-transform: rotate(135deg);
}
/*
* OTHER STUFF
* ---------------------------------- */
.window {
position: relative;
box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}
.window::before {
content: '';
display: block;
position: absolute;
left: -10px;
top: -10px;
width: 100%;
height: 100%;
z-index: -1;
background: rgba(0, 0, 0, 0.2);
border-radius: 7px;
padding: 10px;
}
.window > header {
background: url('img/bg_header.png');
height: 98px;
border-top: 1px solid #bbbbbb;
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
border-radius: 7px 7px 0 0;
color: #FFF;
}
.window > header h1 {
color: #999;
font-size: 18px;
font-weight: normal;
text-shadow: 1px 1px #FFF;
margin: 42px 50px;
}
.window > .message {
padding: 50px;
}
.window > .message h1 {
color: #666;
font-size: 24px;
font-weight: normal;
margin: 0;
}
.window > .message p {
border-top: 1px dashed #e5e5e5;
border-bottom: 1px dashed #e5e5e5;
color: #999;
font-size: 14px;
padding: 20px 0;
}
.window > .message a {
text-decoration: none;
color: #4aa6d6;
font-size: 14px;
}