-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
122 lines (98 loc) · 2.62 KB
/
index.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
body {
width: 600px;
margin: 0 auto;
}
b {
color: #333;
}
#chrome {
display: inline-block;
vertical-align: bottom;
height: 26px;
margin: 0 6px 0px 0px;
}
#store {
width: 18px;
display: inline-block;
margin: 1px 0 0 7px;
}
.button {
padding: 1px;
background: -webkit-linear-gradient(#ccd0d6,#adb2bb);
background: -moz-linear-gradient(#ccd0d6,#adb2bb);
background: -o-linear-gradient(#ccd0d6,#adb2bb);
background: -ms-linear-gradient(#ccd0d6,#adb2bb);
background: linear-gradient(#ccd0d6,#adb2bb);
border-radius: 14px;
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05);
box-shadow: 0 1px 0 rgba(0,0,0,0.05);
-webkit-transition: -webkit-box-shadow .1s ease-in-out;
-moz-transition: -moz-box-shadow .1s ease-in-out;
-o-transition: box-shadow .1s ease-in-out;
-ms-transition: box-shadow .1s ease-in-out;
transition: box-shadow .1s ease-in-out;
display: inline-block;
}
.button:hover {
background: #6ea7df;
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05),0 0 4px #6ea7df;
box-shadow: 0 1px 0 rgba(0,0,0,0.05),0 0 4px #6ea7df;
}
.button:active {
background: #fff;
-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.05),0 0 4px #fff;
box-shadow: 0 1px 0 rgba(0,0,0,0.05),0 0 4px #fff;
}
.button span {
display: block;
height: 24px;
line-height: 22px;
text-shadow: 0 1px 0 #fff;
background: -webkit-linear-gradient(#fff, #eff1f4);
background: -moz-linear-gradient(#fff, #eff1f4);
background: -o-linear-gradient(#fff, #eff1f4);
background: -ms-linear-gradient(#fff, #eff1f4);
background: linear-gradient(#fff, #eff1f4);
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
border-radius: 13px;
vertical-align: top;
font-size: 12px;
padding: 2px 12px;
color: #333;
font-weight: bold;
}
.button:active span {
color: #444;
background: -webkit-linear-gradient(#e6e8eb,#eff1f4);
background: -moz-linear-gradient(#e6e8eb,#eff1f4);
background: -o-linear-gradient(#e6e8eb,#eff1f4);
background: -ms-linear-gradient(#e6e8eb,#eff1f4);
background: linear-gradient(#e6e8eb,#eff1f4);
-webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
}
#install {
float: right;
bottom: 3px;
position: relative;
}
#install span {
padding: 2px 8px 2px 10px;
}
#more {
text-align: center;
}
#more a {
margin: 20px 0;
}
img.lorem {
width: 518px;
height: 320px;
margin: 25px 0 20px 0;
}
p.fixie {
color: rgb(78, 78, 78);
}
a.intext { color: rgb(74, 126, 221); }
a.intext:hover { color: #6badeb; }