-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (78 loc) · 1.51 KB
/
style.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
body {
background-color: rgb(24, 28, 31);
}
* {
transition: ease-in-out !important;
transition-duration: 0.2s !important;
}
.main {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: rgb(24, 28, 31);
position: fixed;
block-size: 100%;
inline-size: 100%;
}
.icon {
display: flex;
justify-content: center;
align-items: center;
inline-size: 80%;
/* block-size: 70%; */
}
.fullicon {
width: 60%;
}
.links {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
align-content: center;
inline-size: 100%;
block-size: 30%;
}
.links a {
font-family: 'Manrope', sans-serif;
/* font-family: "Montserrat", sans-serif; */
color: white;
text-decoration: none;
}
.links a:hover {
color: rgb(173, 86, 255);
}
.links-config {
background-color: #5b5b5b73;
padding-left: 1rem;
padding-right: 1rem;
border-radius: 12px;
margin-right: 1rem;
margin-left: 1rem;
}
.spacer {
margin-right: 1rem;
margin-left: 1rem;
color: whitesmoke;
}
.footer-font {
font-family: 'Manrope', sans-serif;
color: rgb(226, 212, 212);
font-size: 14px;
}
.footer-config {
display: flex;
align-items: center;
background-color: #464646;
padding-left: 1rem;
padding-right: 1rem;
border-radius: 12px;
margin-right: 1rem;
margin-left: 1rem;
}
@media (max-width:450px){
.fullicon {
width: 100%;
}
}