-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (62 loc) · 1.07 KB
/
style.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
/* CSS DOCUMENT */
*{
background-color: #f5f4f4;
font-size: 1rem;
font-family: sans-serif;
}
/* MAIN */
main{
text-align: center;
margin: auto;
}
/* CONTENT */
.content h1,.content h2,.content h3 {
font-size: 35px;
}
/* ICONS */
.icons p{
margin-top: 2rem;
}
.icons img{
width: 60px;
max-width: 80px;
}
/* START */
.start a {
display: block;
max-width: 400px;
margin: 15px auto;
padding: 5px 30px;
font-family: monospace;
font-size: 22px;
text-decoration: none;
color: black;
border: 5px solid orange;
background-color: #feac32;
}
.start a:hover{
background-color: #ffb443;
}
.start figure{
margin: 15px;
}
.start img{
width: 100%;
max-width: 625px;
}
.start figcaption{
font-weight: bold;
font-size: 18px;
margin: 15px;
}
@media all and (min-width: 600px) {
/* ICONS */
.icons img{
width: 70px;
margin: 0 10px;
}
/* START */
.start a{
font-size: 25px;
}
}