-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy paththeme.less
More file actions
217 lines (190 loc) · 6.24 KB
/
theme.less
File metadata and controls
217 lines (190 loc) · 6.24 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
@import "_mixins.less";
/* =============================================================================
MAIN LAYOUT
========================================================================== */
html {
background:#F6F6F6;
font:normal normal 10px/1.2em helvetica, arial, sans-serif;
color:#777;
}
/* =============================================================================
BASIC STYLES
========================================================================== */
h1, h2, h3, h4, h5, h6 {color:#1c3b56;}
/* =============================================================================
NAVIGATION
========================================================================== */
nav {background: #2b2b2b;}
.nav-link {color:#e7e7e7;}
.nav-link:active,
.nav-link:hover,
.nav-link:focus,
.nav-link.current {color:#fff;}
/* =============================================================================
HEADER
========================================================================== */
.header {
background-image: url('/static/img/cover.jpg');
background-color: #2b2b2b;
background-repeat: no-repeat;
background-position: center bottom;
background-size: 100% auto;
}
.header-blog {
background-image: url('/static/img/cover.jpg');
background-color: #2b2b2b;
background-repeat: no-repeat;
background-position: center top;
background-size: 100% auto;
}
.logo-link, .tagline, .call-action-area .price {
text-shadow: 1px 3px 2px rgba(0,0,0,.5);
}
.logo-link {
color: #ffd343;
}
.tagline, .tagline-blog, .call-action-area .price {
color: #fff;
}
.tagline {
font-weight: normal;
letter-spacing: 2px;
background-color: #1c3b56;
padding: 10px 0;
}
.tagline-blog {
font-weight: lighter;
padding: 10px 0;
}
.call-action-area .price {color:#fddd52;}
.call-action-area .call-action-link, .btn {
background-color: #fddd52;
background-image: -moz-linear-gradient(top, #fddd52 30%, #f0a303 150%);
background-image: -webkit-linear-gradient(top, #fddd52 30%, #f0a303 150%);
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fddd52', endColorstr='#f0a303');
background-image: linear-gradient(top, #fddd52 30%, #f0a303 150%);
color:#2b2b2b;
text-shadow: 0 1px 0 rgba(255,255,255,.5);
box-shadow: 0 2px 3px 0 rgba(0,0,0,.4), inset 0 -2px 3px 0 #cc7f0a, inset 0 1px 0 0 #fff9b1;
border-radius: 40px;
}
.github-link {
position: fixed;
top: 0;
right: 0;
z-index: 11;
}
.github-link img {
border: 0;
}
/* =============================================================================
CONTENT
========================================================================== */
.content a {color:#f0a303;}
.content a:hover, .content a:focus {
color:#fddd52;
text-decoration: underline;
}
/* =============================================================================
ABOUT
========================================================================== */
.about {
border:1px solid #e7e7e7;
background:#fff;
border-radius:4px;
}
/* =============================================================================
LOCATION
========================================================================== */
.location-area {
background: #e7e7e7;
border: 1px solid #ccc;
border-radius: 4px;
height: 300px;
}
/* =============================================================================
SPEAKER
========================================================================== */
.speaker-photo .photo {
border-radius: 50%;
box-shadow: 0 0 0 8px rgba(0,0,0,.07);
.transition(all 0.3s ease-out);
}
.speakers-item:hover .speaker-photo .photo {box-shadow: 0 0 0 8px rgba(0,0,0,.3);}
.speech-time {
color:#fff;
background:#2b2b2b;
border-radius: 8px;
}
/* =============================================================================
SCHEDULE
========================================================================== */
.schedule-tbl {
background:#fff;
border:1px solid #ccc;
border-radius: 4px;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.15);
}
.schedule-tbl table {background:#fff;}
.schedule-tbl td, .schedule-tbl th {border-bottom:1px solid #e7e7e7;}
.schedule-tbl tbody tr:nth-child(2n+1) {background:#f6f6f6;}
.schedule-tbl th {color:#2b2b2b;}
.schedule-tbl .speaker-photo .photo {box-shadow: 0 0 0 1px rgba(0,0,0,.3);}
.speakers-company {color:#999;}
.schedule-slot {color:#2b2b2b;}
.schedule-tbl tbody tr:hover {background:#fffde1;}
.schedule-coffee, .schedule-closing, .schedule-lunch, .schedule-other {color:#214f87;}
/* =============================================================================
SPONSORS
========================================================================== */
.sponsor--link, .partner-link {
background: #fff;
border: 1px solid #ccc;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.15);
}
.sponsor--link:hover, .sponsor--link:focus, .partner-link:hover, .partner-link:focus {border-color: #f0a303;}
/* =============================================================================
CONTACT
========================================================================== */
.form input[type=text], .form input[type=email], .form textarea{
color: #777;
border: 1px solid #e7e7e7;
background: #fff;
border-radius: 4px;
}
.form input[type=text]:focus, .form input[type=email]:focus, .form textarea:focus {border-color:#aaa;outline:0;}
/* =============================================================================
BLOG
========================================================================== */
.blog-post {
margin: 20px -20px;
padding: 19px;
border-bottom: 1px solid #e7e7e7;
border-radius: 4px;
}
.pagination {
text-align: center;
li {
font-size: 16px;
margin-right: 6px;
display: inline-block; }
}
/* =============================================================================
Media Queries
========================================================================== */
@media only screen and (max-width : 1024px) {
.header {
background-size: auto 100%;
}
}
@media only screen and (max-width : 480px) {
/* speakers */
.speaker-photo .photo {box-shadow: 0 0 0 3px rgba(0,0,0,.07);}
.speech-title {font-weight: bolder;}
.speech-time {
color:#2b2b2b;
background: transparent;
font-weight: bolder;
}
.github-link { display: none; }
}