-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscaffolding.scss
executable file
·67 lines (57 loc) · 1017 Bytes
/
scaffolding.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
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
min-width: 320px;
font-family: "Roboto", "Arial", sans-serif;
color: $font-grey;
background-color: #ffffff;
overflow-x: hidden;
}
body::-webkit-scrollbar {
width: 6px;
}
body::-webkit-scrollbar-thumb {
background-color: $color-orange;
outline: 1px solid $color-light;
}
a {
display: inline-block;
margin: 0;
text-decoration: none;
transition-duration: 0.2s;
transition-timing-function: ease;
&:hover {
color: #fc557c;
}
&:active,
&:focus {
outline: none;
color: #fc557c;
}
}
// img {
// max-width: 100%;
// height: auto;
// }
.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
}