-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (57 loc) · 1.39 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
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
body {
margin: 0;
padding: 0;
/*background: linear-gradient(to bottom, #280076, #280076);*/
background-image: url("img/windows.jpg");
background-size: cover;
background-attachment: fixed;
scroll-behavior: smooth;
}
.container {
max-width: 700px;
margin: 0;
padding: 20px;
}
.card {
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
background-color: rgba(17, 25, 40, 0.25);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.125);
padding: 38px;
filter: drop-shadow(0 30px 10px rgba(0,0,0,0.125));
display: flex;
flex-direction: column;
align-items: center;
justify-content:center;
text-align: center;
}
h1, .title {
font-size: 3rem;
margin: 0;
text-transform: uppercase;
color: rgba(255,255,255,0.98);
font-family: 'Righteous', sans-serif;
user-select: none;
}
.tag, .description {
color: #DFE3EE;
margin: 10px 0;
}
p, .tag {
font-size: 1rem;
font-weight: 400;
font-family: 'Poppins', sans-serif;
font-weight: 600;
text-transform: uppercase;
text-decoration: underline;
}
p, .description {
font-size: 1rem;
font-weight: 400;
text-transform: none;
font-family: 'Poppins', sans-serif;
text-decoration: none;
}