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

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

Issue 10700168: massive CL is massive (Closed) Base URL: https://code.google.com/p/dartlang-site/@master
Patch Set: 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 #top-mast {
107 text-align: center;
108 margin-bottom: 30px;
109
110 .logo {
111 margin-bottom: 36px;
112 position: relative;
113 left: -28px;
114 }
115
116 .contents {
117 padding-top: 30px;
118 background-repeat: no-repeat;
119 background-position: center bottom;
120
121 @media (min-width: 481px) {
122 background-image: url('/imgs/Dart_Background-large-white-dartboard.jpg') ;
123 }
124 }
125
126 h1 {
127 font-size: 40px;
128 margin-bottom: 18px;
129 }
130
131 p {
132 font-size: 18px;
133 font-weight: 200;
134 line-height: $baseLineHeight * 1.5;
135 color: $heroUnitLeadColor;
136 }
137
138 ul.buttons {
139 text-align: center;
140 list-style: none;
141 margin-top: 40px;
142
143 li {
144 display: inline-block;
145 margin: 0 1em;
146 vertical-align: top;
147 margin-top: 10px;
148 width: 180px;
149 height: 73px;
150 }
151
152 li.download {
153 padding-top: 9px;
154 }
155
156 li.twitter {
157 padding-top: 12px;
158 }
159 }
160 }
161
162 .overview-transition {
163 text-align: center;
164
165 h1 {
166 font-size: 50px;
167 margin-bottom: 1em;
168 color: #AAA;
169 }
170 }
171
172 }
173
174 section.article div.author-and-date {
175 font-style: italic;
176 }
177
178 label.os-choice {
179 display: inline;
180 }
181
182 footer {
183 margin-top: 10px;
184 text-align: center;
185 p {
186 font-size: $baseFontSize - 2;
187 color: $grayLight;
188 }
189 }
190
191 @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