-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis_title.css
149 lines (132 loc) · 3.78 KB
/
thesis_title.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@font-face {
font-family:'Cousine_Bold';
src: url('/users/nolanthompson/library/fonts/cousine-bold.ttf');
}
@font-face {
font-family:'hikarumono-regular';
src: url('/users/nolanthompson/library/fonts/hikarumono-regular.otf');
}
.custom-cursor {
cursor: url('icons8-minecraft-axe-26.png'), auto;
}
body #title {
font-family: 'Cousine_Bold', sans-serif;
color: rgb(191, 255, 0);
font-size: 5.1vw;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999; /* Ensure the overlay is on top of other content */
filter: blur(1px);
-webkit-filter: blur(2px);
}
body #title_half {
font-family:'Cousine_Bold', sans-serif;
color: rgb(0, 0, 0);
font-size: 5vw;
position: fixed;
top: 0;
left: 0vw;
width: 100%;
height: 100%;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999; /* Ensure the overlay is on top of other content */
opacity: 80%;
filter: blur(20px);
-webkit-filter: blur(3px);
}
body #title_two {
font-family: 'hikarumono-regular', sans-serif;
color: rgb(200, 200, 200);
font-size: 8vw;
position: fixed;
top: 0vw;
left: 7vw;
width: 100%;
height: 100%;
background-color: transparent;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999; /* Ensure the overlay is on top of other content */
}
body #title_three {
font-family: 'Cousine_Bold', sans-serif;
color: rgb(0,0, 255);
font-size: 2vw;
position: fixed;
top: 2vw;
right: 2vw;
width: 100%;
height: 100%;
background-color: transparent;
display: flex;
justify-content: right;
align-items: right;
z-index: 9999; /* Ensure the overlay is on top of other content */
filter: blur(3px);
-webkit-filter: blur(2px);
}
.button-style {
font-family: 'Cousine_Bold', sans-serif;
border: 2px solid rgb(0, 0, 0);
border-radius: 50px;
color: black;
padding: .5vw 2vw;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1vw;
margin: 1vw;
transition: background-color 0.3s ease, color 0.3s ease;;
}
.button-style:hover {
background-color: black;
color: white;
}
.label-style {
font-family: 'Cousine_Bold', sans-serif;
font-size: 1vw;
margin: 1vw;
}
input[type="range"] {
-webkit-appearance: none; /* Remove default styling */
appearance: none;
width: 100%; /* Set width to fill its container */
height: 1vw; /* Set height */
background-color: #ffffff; /* Background color of the track */
border-radius: 1vw; /* Set border radius */
}
/* Styles for the slider track */
input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 10px; /* Height of the track */
background-color: #000000; /* Background color of the track */
border-radius: 5px; /* Set border radius */
}
/* Styles for the slider thumb (the draggable handle) */
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none; /* Remove default styling */
appearance: none;
width: 15px; /* Width of the thumb */
height: 15px; /* Height of the thumb */
background-color: #ffd3ff; /* Color of the thumb */
border-radius: 50%; /* Make the thumb round */
}
/* Styles for the thumb when it's being dragged */
input[type="range"]:active::-webkit-slider-thumb {
background-color: #e8fd29; /* Change color when active */
}
/* Styles for the thumb when it's hovered over */
input[type="range"]::-webkit-slider-thumb:hover {
background-color: #dde41e; /* Change color when hovered */
}