This repository was archived by the owner on Jul 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.scss
164 lines (136 loc) · 3 KB
/
index.scss
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
@import 'partials/_colors.scss';
@import 'partials/_header.scss';
@import 'partials/_intro.scss';
@import 'partials/_intro-images.scss';
@import 'partials/_section-about-us.scss';
@import 'partials/_section-meetups.scss';
@import 'partials/_section-facebook-topics.scss';
@import 'partials/_section-sponsors.scss';
@import 'partials/_footer.scss';
html, body{
overflow-x: hidden;
}
ol, ul {
list-style: none;
}
a, a:hover, a:active, a:visited {
text-decoration: none;
}
p {
font-weight: 400;
font-size: 17px;
line-height: 26px;
color: #6b7c93;
}
code, pre {
font-family: Source Code Pro,Consolas,Menlo,monospace;
}
section {
& p {
margin-top: 30px;
}
}
#brand{
font-size: 28px;
}
.container {
margin: 0 auto;
padding: 0 20px;
width: 100%;
max-width: 1040px;
}
.section-title {
line-height: 33px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .025em;
color: darken($primary-color, 30%);
}
.general-link {
color: $primary-color;
font-weight: 500;
transition: color .1s ease;
cursor: pointer;
&:hover, &:active {
color: darken($primary-color, 30%);
text-decoration: none;
}
}
.general-link--arrow:after {
font: normal 16px StripeIcons;
content: '\2192';
padding-left: 4px;
}
.general-button {
white-space: nowrap;
display: inline-block;
height: 40px;
line-height: 40px;
padding: 0 14px;
box-shadow: 0 4px 6px transparentize(darken($white-color, 50%), 0.11),0 1px 3px transparentize(darken($white-color, 100%), 0.8);
background: $white-color;
border-radius: 4px;
font-size: 15px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: .025em;
color: $primary-color;
margin-left: 10px;
margin-top: 10px;
&:hover{
color: darken($primary-color, 30%);
box-shadow: 0 0 2px 2px darken($white-color, 50%);
}
&:active {
color: darken($primary-color, 30%);
background-color: darken($white-color, 30%);
box-shadow: 0 4px 6px transparentize(darken($white-color, 50%), 0.11),0 1px 3px transparentize(darken($white-color, 100%), 0.8);
}
}
.general-button--default {
color: $white-color;
background: $primary-color;
}
.general-button--default:hover {
color: $white-color;
background-color: $primary-color;
}
.general-button--default:active {
color: $white-color;
background-color: darken($primary-color, 30%);
}
@mixin heading-icon () {
display: block;
width: 66px;
height: 66px;
}
#primary {
margin-top: 0;
& .heading-icon {
margin: 0 auto;
margin-bottom: 30px;
@include heading-icon();
}
}
@media (min-width:384px) {
#primary {
margin-top: -100px;
}
}
@media (min-width:670px) {
#primary {
margin-top: -20px;
}
}
@media (min-width:880px) {
#primary {
margin-top: -220px;
}
}
#secondary {
margin-top: 40px;
& .heading-icon {
margin-bottom: 25px;
@include heading-icon();
}
}