-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (42 loc) · 884 Bytes
/
style.css
File metadata and controls
65 lines (42 loc) · 884 Bytes
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
@font-face {
font-family: 'Pricedown';
src: url('fonts/Pricedown.tff.otf') format('truetype');
font-weight: normal;
font-style: normal;
}
body{
background-color: #1a1818;
justify-content: center;
align-items: center;
color: white;
font-family: 'Poppins', sans-serif ;
min-height: 100vh;
display: flex;
flex-direction: column;
margin: 0;
}
.logo .logoname h1{
font-family: 'Pricedown', sans-serif;
color: #7a78faad;
}
.loading{
height: 60px;
width: 60px;
border: 5px solid black;
border-radius: 50%;
margin: 0 auto;
}
.load{
height: 60px;
width: 60px;
border: 5px solid #7A78FA;
border-bottom: none;
border-left: none;
border-radius: 50%;
animation: spin 1s ease infinite;
}
@keyframes spin{
100% {
transform: rotate(360deg);
}
}