This repository was archived by the owner on Jul 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (90 loc) · 2.06 KB
/
style.css
File metadata and controls
105 lines (90 loc) · 2.06 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body {
background-color: rgb(14, 8, 0);
font-family: 'Montserrat', sans-serif;
color: white;
text-align: center;
}
h1 {
font-size: 450%;
}
h2 {
font-size: 350%;
}
.logobg {
margin: 0 auto;
width: 250px;
height: 250px;
transform-style: preserve-3d;
transform: rotateX(15deg) rotateY(20deg);
background-color: transparent;
transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s;
}
.logobg:hover {
background-color: #2e2e2e;
}
.logobg::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000;
transform: rotateX(15deg) rotateY(10deg);
transform: translate3d(0, 0, -75px);
}
.logobg::after {
content: url(https://sol-client.github.io/logo.png);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #0000;
transform: rotateX(0deg) rotateY(0deg);
transform: translate3d(0, 0, 35px);
}
.linear-wipe {
text-align: center;
background: linear-gradient(90deg, #996515 10%, #ffd700 45%, #ffd700 50%, #996515 90%);
background-size: 200% auto;
color: #000;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: grad 5s linear infinite;
}
@keyframes grad {
to {
background-position: 200% center;
}
}
::-webkit-scrollbar-track {
background: nones;
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
background: rgb(200, 200, 200);
}
.features {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
}
@media (max-width: 800px) {
.features {
flex-direction: column;
}
}
a {
text-decoration: none;
color: white;
cursor: pointer;
padding: 22.5px;
border-radius: 5px;
margin: 25px;
}