Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: src/site/scss/style.scss

Issue 10788006: new site (Closed) Base URL: https://code.google.com/p/dartlang-site/@master
Patch Set: final patch Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/site/scss/_syntax.scss ('k') | src/site/slides/2011/10/senchacon/images/280slides.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 @import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700|Montserrat: 400,700);
2
3 /* Override bootstrap variables */
4 $sansFontFamily: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif !de fault;
5 $baseFontSize: 14px !default;
6 $baseLineHeight: 22px !default;
7
8 $dartFont: 'Montserrat', sans-serif;
9
10 @import "compass_twitter_bootstrap_awesome";
11
12 /* colors from logo */
13 $blue-dark: #0081C6;
14 $blue-light: #00A4E4;
15 $green-dark: #00D2B8;
16 $green-light: #55DDCA;
17
18 body {
19 padding-top: 60px;
20 padding-bottom: 40px;
21 }
22
23 /* place after the body + padding */
24
25 @import "compass_twitter_bootstrap_responsive";
26
27 section {
28 margin-bottom: 1em;
29 }
30
31 .alert {
32 a {
33 color: $linkColorHover;
34 text-decoration: underline;
35 }
36 }
37
38 ol.toc li {
39 list-style-type: none;
40 }
41
42 .search-query {
43 width: 100px;
44 }
45
46 .btn-primary {
47 @include bootstrap-buttonBackground($blue-dark, $blue-light);
48 }
49
50 .thumbnail {
51 background-color: whitesmoke;
52 padding: 15px;
53 }
54
55 /* override because we have an image in there */
56 .navbar a.brand {
57 padding: 6px 20px 0 20px;
58 }
59
60 .navbar-search {
61 margin-top: 4px;
62 }
63
64 .navbar li.share-button {
65 padding:10px 8px 0 8px;
66
67 .gplus {
68 width:32px;
69 }
70
71 .twitter {
72 width:56px;
73 }
74 }
75
76 article.homepage {
77
78 pre code {
79 font-size: 12px;
80 }
81
82 h1 {
83 font-family: $dartFont;
84 text-transform: uppercase;
85 }
86
87 h2 {
88 color: $blue-light;
89 }
90
91 section {
92 margin-bottom: 60px;
93
94 .callouts {
95 h2 {
96 text-transform: uppercase;
97 font-family: $dartFont;
98 }
99
100 p.img {
101 text-align: center;
102 }
103 }
104 }
105
106 ul.buttons {
107 text-align: center;
108 list-style: none;
109
110 li {
111 display: inline-block;
112 }
113 }
114
115 #top-mast {
116 text-align: center;
117 margin-bottom: 30px;
118
119 .logo {
120 margin-bottom: 36px;
121 position: relative;
122 left: -28px;
123 }
124
125 .contents {
126 padding-top: 30px;
127 background-repeat: no-repeat;
128 background-position: center bottom;
129
130 @media (min-width: 481px) {
131 background-image: url('/imgs/Dart_Background-large-white-dartboard.jpg') ;
132 }
133 }
134
135 h1 {
136 font-size: 40px;
137 margin-bottom: 18px;
138 }
139
140 p {
141 font-size: 18px;
142 font-weight: 200;
143 line-height: $baseLineHeight * 1.5;
144 color: $heroUnitLeadColor;
145 }
146
147 ul.buttons {
148 margin-top: 40px;
149
150 li {
151 margin: 0 1em;
152 vertical-align: top;
153 margin-top: 10px;
154 width: 180px;
155 height: 73px;
156 }
157
158 li.download {
159 padding-top: 9px;
160 }
161
162 li.twitter {
163 padding-top: 12px;
164 }
165 }
166 }
167
168 .overview-transition {
169 text-align: center;
170
171 h1 {
172 font-size: 50px;
173 margin-bottom: 1em;
174 color: #AAA;
175 }
176 }
177
178 }
179
180 section.article div.author-and-date {
181 font-style: italic;
182 }
183
184 label.os-choice {
185 display: inline;
186 }
187
188 footer {
189 margin-top: 10px;
190 text-align: center;
191 p {
192 font-size: $baseFontSize - 2;
193 color: $grayLight;
194 }
195 }
196
197 @import "syntax";
OLDNEW
« no previous file with comments | « src/site/scss/_syntax.scss ('k') | src/site/slides/2011/10/senchacon/images/280slides.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698