-
Notifications
You must be signed in to change notification settings - Fork 0
/
kills.css
93 lines (77 loc) · 1.59 KB
/
kills.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
@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');
body {
background-color: rgb(51, 41, 41);
overflow-x: hidden;
font-family: 'Bakbak One', cursive;
}
.headerContainer {
text-align: center;
font-size: 80px;
/* color: rgb(241,193,255);
color: linear-gradient(90deg, rgba(241,193,255,0) 0%, rgba(188,0,255,1) 100%); */
}
.dv {
color: rgb(255, 73, 41);
}
.lv {
color: rgb(255, 126, 41);
}
.kills {
width: 80%;
/* height: 150avh; */
margin-left: 10%;
margin-right: 10%;
margin-top: 3%;
margin-bottom: 3%;
background-color: white;
border-radius: 45px;
padding: 35px;
}
.kill {
transition: all 0.5s ease;
display: flex;
background-color: rgb(255, 126, 41);
border-radius: 15px;
margin-top: 15px;
}
.kill:hover {
display: flex;
background-color: rgb(255, 126, 41);
border-radius: 15px;
margin-top: 15px;
padding-top: 5px;
padding-bottom: 5px;
}
.e {
margin: 15px;
}
.amount {
margin-left: 70%;
}
hr {
background-color: rgb(255, 126, 41);
border-color: rgb(255, 126, 41);
}
/* width */
::-webkit-scrollbar {
width: 0px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 15px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.foot {
color: white;
}
#killed1 {
margin-top: 0px;
}