-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (104 loc) · 2.31 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
92
93
94
95
96
97
98
99
100
101
102
103
104
*{transition: 0.3s;color: white;margin:0;padding:0;}
body{
text-align:center;
background-color: #242424;
font-family: sans-serif;
}
.medium{
font-size: 40px;
}
.large{
font-size: 50px;
}
.xlarge{
font-size: 60px;
}
.bold{
font-weight: bold;
}
.bolder{
font-weight: 900;
}
@keyframes background-pan {
from{
background-position: 0% center;
}
to{
background-position: -200% center;
}
}
.grad{
animation: background-pan 3s linear infinite;
background-image: linear-gradient(to right, rgb(136, 136, 255),lightblue,rgb(102, 102, 255));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
white-space: nowrap;
background-size: 200%;
}
.hover-grad:hover{
animation: background-pan 3s linear infinite;
background-image: linear-gradient(to right, rgb(136, 136, 255),lightblue,rgb(102, 102, 255));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
white-space: nowrap;
background-size: 200%;
}
.activate:hover > .hover-gradalt{
animation: background-pan 3s linear infinite;
background-image: linear-gradient(to right, rgb(136, 255, 148),lightgreen,rgb(102, 255, 112));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
white-space: nowrap;
background-size: 200%;
}
.opac{
opacity: 0.6;
}
.footer{
position: fixed;
bottom:0;
left:50%;
transform: translate(-50%);
font-style: italic;
color:rgba(255, 255, 255, 0.252);
}
.button{
border:1px solid gray;
position: absolute; width:fit-content!important; left:50%; transform: translate(-50%,-0%);position: relative;
padding-top:10px;
padding-bottom:10px;
padding-left:50px;
padding-right:50px;
}
a{color:white;text-decoration: none;}
.button:hover{
padding-top:20px;
padding-bottom:20px;
}
.italics{
font-style: italic;
color:rgba(255, 255, 255, 0.64);
}
.side-full-bg{
background-color: #212121;
position: absolute;
left:0;
top:0;
width: 50%;
height:100%;
z-index: -1;
position: fixed;
}
.side-top-bg{
background-color: #262626;
z-index: -1;
position: absolute;
left: 50%;
height:50%;
width:50%;
height:50%;
position: fixed;
}