-
Notifications
You must be signed in to change notification settings - Fork 0
/
font.css
108 lines (95 loc) · 2.21 KB
/
font.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,700;1,300;1,600&family=Roboto+Mono:ital,wght@0,100;0,300;1,300&family=Roboto:wght@100;300&display=swap');
.font, .glass {
font-family: "Fira Code";
}
.title, .navbar, .parent {
font-family: "Roboto Mono";
}
.over h3 {
line-clamp: 8;
}
@media screen and(min-width: 700px){
.over h3 {
line-clamp: none;
}
}
.notify {
z-index: 999;
}
.pop, .search, .title, .absolute {
font-family: "Poppins";
}
.sm, .container {
font-family: "Roboto Mono";
}
.butts{
transition: all 0.4s ease;
}
.clamp {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.butts::before {
content: "";
position: absolute;
width: 0rem;
height: 2.6rem;
background-color: gray;
transition: all 0.4s ease;
top: 0rem;
left: 0rem;
}
.butts:hover::before {
width: 8.3rem;
}
.hell {
z-index: 999
}
.love {
z-index: 999;
background: rgb(25, 22, 22);
backdrop-filter: blur( 10px );
-webkit-backdrop-filter: blur( 10px );
}
.glass, .nav, .btn button {
background: rgba(151, 149, 149, 0.15);
backdrop-filter: blur( 1px );
-webkit-backdrop-filter: blur( 1px );
}
/*
for account info
*/
.container, .containers{
background: rgb(75, 72, 72);
backdrop-filter: blur( 10px );
-webkit-backdrop-filter: blur( 10px );
}
.nav, #input {
background: rgba(0, 0, 0, 0.15);
backdrop-filter: blur( 0px );
-webkit-backdrop-filter: blur( 1px );
}
#inputs, .container button {
background: rgba(0, 0, 0, 0.15);
backdrop-filter: blur( 0px );
-webkit-backdrop-filter: blur( 1px );
border: 1px rgba(250, 244, 244, 0.15) solid;
outline: none;
}
.nav, .form_container {
background: rgba(0, 0, 0, 0.15);
backdrop-filter: blur( 3px );
-webkit-backdrop-filter: blur( 1px );
}
.form_container {
background: rgba(151, 149, 149, 0.15);
backdrop-filter: blur( 1px );
-webkit-backdrop-filter: blur( 11px );
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}