-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkamnaobed.css
83 lines (73 loc) · 1.48 KB
/
kamnaobed.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
/* CSS declarations go here */
body {
font-family: 'Helvetica Neue', Helvetica, Arial, san-serif;
font-weight: 200;
color: #333;
margin: 50px 0;
padding: 0;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
background: #eee;
}
#outer {
width: 600px;
margin: 0 auto;
}
#header {
margin-top: 24px;
}
#header h1 {
font-size: 56px;
margin: 0;
}
#board {
border: 3px solid #bbb;
}
.option {
height: 74px;
/*background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));*/
padding: 12px;
}
.option .title {
display: block;
width: 510px;
float: left;
font-size: 46px;
color: #111;
}
.option .votes {
display: block;
float: right;
width: 52px;
height: 50px;
margin-top: 11px;
font-size: 46px;
background: #fff;
-moz-border-radius: 25px;
border-radius: 25px;
text-align: center;
vertical-align: middle;
padding-bottom: 5px;
}
.option .link {
padding-left: 5px;
}
.option .link a {
color: #555;
}
.red { background-color: #D33319; border-bottom: 1px solid #F35339; }
.red .title { color: #eee; }
.orange { background-color: #F75F07; border-bottom: 1px solid #FF7F27; }
.orange .title { color: #eee; }
.yellow { background-color: #F4A209; border-bottom: 1px solid #FFC229; }
.yellow .title { color: #fff; }
.grey { background-color: #ddd; border-bottom: 1px solid #fff; }
#panel {
position: absolute;
bottom: 0;
right: 0;
text-align: right;
}