-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsass.css
97 lines (88 loc) · 1.69 KB
/
sass.css
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
.char-highlight {
font-weight: bold;
font-size: 1.4rem;
color: #521751;
}
html {
font-size: 94.75%;
}
@media (min-width: 40rem) {
html {
font-size: 125%;
}
}
body {
font-family: Arial, sans-serif;
margin: 0;
}
.container {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
/*flex-direction: column;
flex-wrap: nowrap;*/
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
padding: 3rem 0;
box-sizing: border-box;
}
.sass-section, .sass-details, .sass-introduction {
border: 0.05rem solid #521751;
background: #fae5ff;
padding: 2rem;
text-align: center;
width: 90%;
box-sizing: border-box;
/*@media (min-width: 40rem) {
width: 30rem;
}*/
}
@media (min-width: 40rem) {
.sass-section, .sass-details, .sass-introduction {
width: 30rem;
}
}
.sass-introduction {
box-shadow: 0.2rem 0.2rem 0.1rem #ccc;
}
.sass-introduction p {
margin: 0;
}
.sass-details {
margin: 2rem 0;
}
.section-header {
border-bottom: 0.05rem solid #521751;
}
.section-header h1 {
margin: 0 0 1rem 0;
}
.documentation-links {
list-style: none;
margin: 1rem 0 0 0;
padding: 0;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
}
.documentation-links li {
margin: 0.2rem 0;
background: white;
}
.documentation-links .documentation-link {
text-decoration: none;
color: #521751;
display: block;
padding: 0.2rem;
border: 0.05rem solid #521751;
}
.documentation-links .documentation-link:hover, .documentation-links .documentation-link:active {
color: white;
background: #fa923f;
border-color: #fa923f;
}
/*# sourceMappingURL=sass.css.map */