forked from GET-DROP/Getdrop-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
124 lines (99 loc) · 1.58 KB
/
Style.css
File metadata and controls
124 lines (99 loc) · 1.58 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
background-color: black;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
@media (prefers-color-scheme: dark) {
body,
nav {
background-color: rgb(0, 0, 0) !important;
}
footer {
background-color: #181a1b;
}
h1,
h2,
h3,
h4,
h5,
.navbar-brand,
p {
color: white !important;
font-family: "Poppins", sans-serif;
}
}
.herem {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.textfield {
width: 350px;
height: auto;
margin-left: 50px;
margin-top: 400px;
box-sizing: border-box;
}
#textinfield {
width: 100%;
padding: 15px 20px;
margin-bottom: 30px;
box-sizing: border-box;
background-color: aliceblue;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
border-radius: 5px;
}
#textinfield i {
width: 12px;
transition: transform 0.5s;
}
#textinfield:hover {
background-color: rgb(69, 69, 252);
color: #ffffff;
}
#list {
width: 100%;
border-radius: 6px;
background-color: aliceblue;
overflow: hidden;
}
.airdrops {
width: 100%;
padding: 15px 0 15px 20px;
list-style: none;
cursor: pointer;
box-sizing: border-box;
margin-right: 20px;
}
.airdrops i {
width: 55px;
height: 20px;
position: absolute;
margin-left: 120px;
margin-top: 5px;
}
.airdrops:hover {
background-color: #ffffff;
}
.hide {
visibility: hidden;
}
.rotate {
transform: rotate(180deg);
}
/*# sourceMappingURL=Style.css.map */