-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
90 lines (80 loc) · 1.36 KB
/
stylesheet.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
body {
background: #2f3542;
color: #f1f2f6;
display: flex;
flex-wrap: wrap;
margin-top: 2%;
margin-right: 5%;
margin-bottom: 5%;
margin-left: 5%;
text-align: justify;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
flex-basis: 100%;
height: 0;
margin-bottom: 50px;
}
h2 {
margin-top: 5%;
color: #e74c3c;
flex-basis: 100%;
}
h2::after {
content: "";
background: #e74c3c;
height: 20%;
display: block;
}
h3 {
margin-top: 5%;
color: #ff7f50;
flex-basis: 100%;
text-align: left;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 70%;
}
.blockwhite {
background-color: white;
border: 20px solid white;
text-align: center;
}
a {
color: #eccc68;
text-decoration: none;
}
a:hover {
color: hotpink;
}
.title {
font-weight: 1000;
font-size: 20px;
font-family: monospace;
display: block;
background: #e74c3c;
flex-basis: 100%;
border: 20px solid #e74c3c;
}
/* Mobile view */
@media only screen and (max-width: 600px) {
h1 {
flex-basis: 100%;
height: 0;
font-size: 30px;
margin-bottom: 50px;
}
.title {
font-weight: 1000;
font-size: 20px;
font-family: monospace;
display: block;
background: #e74c3c;
flex-basis: 100%;
border: 20px solid #e74c3c;
text-align: left;
}
}