Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: skin/firstRun.css

Issue 10803010: First-run page (Chrome-specific changes) (Closed)
Patch Set: Created May 27, 2013, 4:52 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 body 1 ../../abp/chrome/skin/firstRun.css
Wladimir Palant 2013/05/28 13:45:28 Same here, please add to the [mapping] section - a
Thomas Greiner 2013/05/28 17:35:12 Done.
2 {
3 font-family: Arial, Helvetica, sans-serif;
4 font-size: 20px;
5 background: repeating-linear-gradient(0deg, #F8F6F5, #F6F4F2 50%, #FCFBF9);
6 background: -webkit-repeating-linear-gradient(0deg, #F5F4F3, #FAF9F8 50%, #F5F 4F3);
7 background-size: 5px 5px;
8 max-width: 800px;
9 margin: auto;
10 line-height: 1.5;
11 }
12
13 #title
14 {
15 margin-top: 30px;
16 padding-left: 148px;
17 line-height: 1;
18 font-size: 220%;
19 font-weight: normal;
20 background-image: url(/icons/abp-128.png);
21 background-position: 0% 50%;
22 background-repeat: no-repeat;
23 min-height: 128px;
24 vertical-align: middle;
25 display: -webkit-box;
26 display: box;
27 box-orient: vertical;
28 box-pack: center;
29 -webkit-box-orient: vertical;
30 -webkit-box-pack: center;
31 }
32
33 #title-changelog
34 {
35 font-size: 50%;
36 }
37
38 #dataCorruptionWarning
39 {
40 font-size: 200%;
41 margin: 20px;
42 padding: 20px;
43 border: 3px solid red;
44 border-radius: 10px;
45 }
46
47 #features
48 {
49 margin: 10px 0px 40px 0px;
50 }
51
52 #features > li
53 {
54 margin-left: 50px;
55 list-style-image: url(/skin/checkmark.png);
56 }
57
58 #share1,
59 #share2
60 {
61 display: none;
62 text-align: center;
63 font-size: 120%;
64 margin-top: 40px;
65 }
66
67 :root[share-variant="1"] #share1,
68 :root[share-variant="2"] #share2
69 {
70 display: block;
71 }
72
73 .share-image
74 {
75 display: inline-block;
76 width: 64px;
77 height: 64px;
78 }
79
80 #share-images2
81 {
82 display: inline-block;
83 box-shadow: 0 0 4px 3px #EEEEEE;
84 border-radius: 5px;
85 background: #FFFFFF;
86 padding: 10px 40px;
87 margin-bottom: 30px;
88 }
89
90 #share-images2 > *
91 {
92 vertical-align: middle;
93 }
94
95 #share-donate
96 {
97 display: inline-block;
98 font-style: italic;
99 font-weight: bold;
100 font-size: 12px;
101 text-decoration: none;
102 color: #003366;
103 border: 1px solid #FF9933;
104 border-radius: 10px;
105 padding: 2px 10px;
106 background-image: linear-gradient(0deg, #FFFDF8, #FEDE9E 60%, #FFAF34 65%, #FF EFD3);
107 background-image: -webkit-gradient(linear, center top, center bottom,
108 from(#FFFDF8), color-stop(60%, #FEDE9E), color-stop(65%, #FFAF34), to( #FFEFD3));
109 }
110
111 #share2-connection
112 {
113 margin: 0px 20px;
114 }
115
116 .share-facebook
117 {
118 background-image: url(/skin/facebook.png);
119 }
120
121 .share-twitter
122 {
123 background-image: url(/skin/twitter.png);
124 }
125
126 #glass-pane, #share-popup
127 {
128 visibility: hidden;
129 opacity: 0;
130 -webkit-transition-property: opacity, visibility;
131 transition-property: opacity, visibility;
132 }
133
134 #glass-pane
135 {
136 position: fixed;
137 top: 0;
138 right: 0;
139 bottom: 0;
140 left: 0;
141 background: rgba(0, 0, 0, 0.5) url(/skin/ajax-loader.gif) no-repeat 50% 50%;
142
143 display: -webkit-box;
144 -webkit-box-orient: horizontal;
145 -webkit-box-pack: center;
146 -webkit-box-align: center;
147
148 display: box;
149 box-orient: horizontal;
150 box-pack: center;
151 box-align: center;
152
153 -webkit-transition-duration: 0.2s;
154 transition-duration: 0.2s;
155 }
156
157 #share-popup
158 {
159 border: none;
160 -webkit-transition-delay: 0.1s;
161 transition-delay: 0.1s;
162 }
163
164 #glass-pane.visible, #share-popup.visible
165 {
166 visibility: visible;
167 opacity: 1;
168 }
169
170 #share-popup.visible
171 {
172 -webkit-transition-duration: 0.15s;
173 transition-duration: 0.15s;
174 }
175
176 /* Adjust font size on smaller screens */
177 @media (max-height: 800px)
178 {
179 body
180 {
181 font-size: 19px;
182 }
183 }
184
185 @media (max-height: 750px)
186 {
187 body
188 {
189 font-size: 17px;
190 }
191 }
192
193 @media (max-height: 700px)
194 {
195 body
196 {
197 font-size: 16px;
198 }
199 }
OLDNEW
« firstRun.js ('K') | « skin/features/tracking.png ('k') | skin/social/facebook.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld