-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (55 loc) · 782 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
*,
*::before,
*::after {
box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p {
margin: 0;
}
body {
min-height: 100vh;
padding: 2rem;
}
html {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}
.title {
margin-bottom: 5vh;
}
.title > h1 {
font-size: 15vw;
letter-spacing: .03em;
}
.author-tag {
max-width: 20vmax;
margin-left: 2vw;
}
.center-box {
display: grid;
place-content: center;
}
.item {
width: 25vw;
border-style: solid;
border-radius: 0.3rem;
padding: 1.5rem;
border-width: .1rem;
border-color: #000;
}
.item:hover {
box-shadow: 12px 12px black;
}
.item > h1 {
font-size: 3vmax;
margin-bottom: 1rem;
}
.item-link {
color: inherit;
text-decoration: inherit;
}