-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.scss
70 lines (53 loc) · 1018 Bytes
/
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
@import "settings";
@import "mixins";
@import "buttons";
@import "inputs";
@import "grid";
* {
margin: 0px;
padding: 0px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #484848;
-webkit-text-stroke: 0.35px;
-webkit-font-smoothing: antialiased;
@include vendor-prefix(box-sizing, border-box);
}
html, body {
min-height: 100vh;
width: 100%;
}
body {
background: url(origin("/images/stuff.jpg")) no-repeat 50% 50% fixed;
@include vendor-prefix(background-size, cover);
}
:disabled, .disabled {
pointer-events: none;
}
a {
text-decoration: none;
}
/* ---- Utility Classes ---- */
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.spacer-sm-t {
margin-top: 10px;
}
/* ------------------------- */
.content {
max-width: 1200px;
margin: auto;
padding: 20px;
}
.button {
@include button($white, $white);
}
.input {
@include input($base-grey);
}