-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
76 lines (69 loc) · 1.6 KB
/
main.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
@import url(typography.css);
html {
font-size: 94.75%; }
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;
align-items: center;
padding: 3rem 0;
box-sizing: border-box; }
.sass-introduction {
border: 0.05rem solid #521751;
background: #f7e1f6;
padding: 2rem;
text-align: center;
width: 90%;
box-shadow: 0.2rem 0.2rem 0.1rem #ccc;
box-sizing: border-box; }
.sass-introduction p {
margin: 0; }
.sass-details {
border: 0.05rem solid #521751;
background: #f7e1f6;
padding: 1rem;
text-align: center;
margin: 2rem 0;
width: 90%;
box-sizing: border-box; }
.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: main-color;
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; }
@media (min-width: 40rem) {
html {
font-size: 125%; }
.container {
padding: 3rem 0; }
.sass-introduction,
.sass-details {
width: 30rem; } }