-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
79 lines (67 loc) · 1.12 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
77
78
79
* {
margin: unset;
padding: unset;
}
body {
background-color: #ffffff;
font-family: sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
main {
width: fit-content;
height: fit-content;
max-width: 600px;
margin: 20px;
}
figure {
float: right;
display: block;
}
img {
width: 200px;
max-width: 200px;
margin: 20px;
box-sizing: border-box;
}
@media (max-width: 620px) {
figure {
margin: auto;
float: unset;
display: block;
width: fit-content;
margin-bottom: 20px;
}
}
h1 {
margin-bottom: 20px;
position: relative;
display: inline-block;
}
h1::after {
content: ' ';
display: block;
width: 100%;
height: 20px;
position: relative;
background: repeating-linear-gradient(115deg, #000000 0%, #000000 25px, #ffd200 26px, #ffd200 49px, #000000 50px);
}
p {
font-size: 16pt;
margin-bottom: 10px;
}
ul {
margin-top: 10px;
}
li {
font-size: 16pt;
margin-left: 30px;
}
a:link {
color: #37d6a7;
}
a:visited {
color: #6464b3;
}