-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaults.scss
More file actions
46 lines (43 loc) · 1.18 KB
/
defaults.scss
File metadata and controls
46 lines (43 loc) · 1.18 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
@import 'vars';
@import 'mixins';
/* default stuff */
html {
background-color: $primary-text-color;
// background: #31B7D7;
// background-repeat: no-repeat;
// background: -webkit-linear-gradient(90deg, #31B7D7, #EDAC7D);
// background: linear-gradient(165deg, $primary-text-color, darken($primary-color-dark, 30%));
min-height: 100%;
}
body {
margin: 0;
}
body, input, select, textarea {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Arial,sans-serif;
font-size: 16pt;
box-sizing: border-box;
color: $primary-color-text;
-webkit-font-smoothing: antialiased;
}
a {
color: $primary-color;
}
.monospace {
font-family: Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
}
.hide-until-load {
visibility: hidden;
}
.hidden {
visibility: hidden;
}
.visually-hidden { /*https://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html*/
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
padding:0 !important;
border:0 !important;
height: 1px !important;
width: 1px !important;
overflow: hidden;
}