-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (46 loc) · 1.12 KB
/
style.css
File metadata and controls
54 lines (46 loc) · 1.12 KB
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
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Sacramento&display=swap");
::-webkit-scrollbar-button {
display: none;
}
::-webkit-scrollbar {
width: 2px;
height: 2px;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.15);
border: 1px solid rgba(255, 255, 255, 0.15);
cursor: pointer;
}
::-webkit-scrollbar-track {
background: transparent;
width: calc(2px * 2);
border: 2px solid rgba(26, 26, 26, 0);
}
::-webkit-scrollbar-track-piece {
background: transparent;
width: calc(2px / 2);
border: 2px solid rgba(26, 26, 26, 0);
}
body {
scrollbar-face-color: rgba(255, 255, 255, 0.15);
scrollbar-track-color: transparent;
}
body {
display: grid;
font-family: "Sacramento", cursive;
color : black;
}
body .card1 {
padding: 2em;
border-radius: 1em;
border: 1px solid rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.2);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
transform: perspective(500px);
transform-style: preserve-3d;
}
body .card1 .welcome {
font-family: "Sacramento", cursive;
transform: translateZ(20px);
}