forked from DLzer/horror-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 1.33 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;800&display=swap");
body {
display: flex;
flex-flow: column;
align-items: center;
font-family: "Poppins", serif;
background: rgb(253, 165, 24);
background: radial-gradient(circle,
rgb(255, 158, 47) 0%,
rgb(255, 77, 77) 100%);
}
h1 {
font-weight: 800;
margin: 1rem 0 0;
}
ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
flex-wrap: wrap;
list-style: none;
li a {
color: #000000;
text-decoration: none;
display: flex;
width: 10rem;
height: 10rem;
margin: 0.25rem;
flex-flow: column;
border-radius: 0.2rem;
padding: 1rem;
font-weight: 300;
font-size: 0.8rem;
box-sizing: border-box;
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
time {
font-size: 2rem;
margin: 0 0 1rem 0;
font-weight: 500;
}
}
.today {
time {
font-weight: 800;
}
background: #ffffff70;
}
}