-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (57 loc) · 802 Bytes
/
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
* {
color: white;
}
a:hover {
color: #40a0ff
}
.h_flex {
display: flex;
justify-content: center;
align-items: center;
background-color: #353535;
gap: 10px;
}
body {
margin: 0;
height: 100svh;
display: grid;
grid-template-rows: 75px 1fr 40px;
}
header>svg {
/* border-style: solid;
border-width: 1px;
border-color: white;
border-radius: 8px; */
justify-self: right;
}
.svg_blue {
fill: #00F;
stroke: white;
}
.svg_orange {
fill: #FF6800;
stroke: white;
}
.svg_red {
stroke: #F00;
stroke-width: 2px;
}
main {
background-color: #252525;
display: flex;
align-items: center;
flex-direction: column;
}
main img {
width: min(480px, 100vw);
}
footer a {
height: 100%;
text-decoration: none;
}
footer img {
height: 70%;
}
footer a:hover {
text-decoration: underline;
}