forked from nihalzown/s3-class
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
142 lines (124 loc) · 2.47 KB
/
styles.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
/* Base styles */
body {
background-color: #222222;
color: #e0e0e0;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
overflow-y: auto; /* Allow vertical scrolling */
cursor: none;
position: relative;
}
/* Header styles */
header {
background-color: #2A2A2A;
padding: 20px;
text-align: center;
border-bottom: 1px solid #3D3D3D;
}
header h1 {
margin: 0;
color: #e0e0e0;
}
/* Navigation styles */
nav {
background-color: #2A2A2A;
padding: 10px;
text-align: center;
}
nav a {
color: #7676e3; /* Lavender */
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
nav a:hover {
color: #D8BFD8; /* Subtle complementary color for hover */
}
/* Main content styles */
main {
padding: 20px;
}
main h2 {
color: #7676e3; /* Lavender */
}
main p {
line-height: 1.6;
}
li.hidden {
display: none;
}
/* Footer styles */
footer {
background-color: #2A2A2A;
padding: 10px;
text-align: center;
border-top: 1px solid #3D3D3D;
}
footer p {
margin: 0;
color: #e0e0e0;
}
/* Button styles */
button {
background-color: #7676e3; /* Lavender */
color: #222; /* Darker text for contrast */
border: none;
padding: 10px 20px;
cursor: pointer;
font-size: 16px;
border-radius: 5px;
}
button:hover {
background-color: #D8BFD8; /* Subtle complementary color for hover */
color: white;
}
/* Card styles */
.card {
background-color: #2A2A2A;
border: 1px solid #3D3D3D;
border-radius: 10px;
padding: 20px;
margin: 20px 0;
}
.card h3 {
color: #D8BFD8; /* Subtle complementary color */
}
.card p {
color: #e0e0e0;
}
/* Mouse follower styles */
#follower {
position: absolute;
width: 15px;
height: 15px;
background-color: #7676e3; /* Lavender */
border-radius: 70%;
pointer-events: none;
opacity: 0.8;
transition: transform 0.05s, opacity 0.05s;
z-index: 1000;
box-shadow: 0 0 10px #7676e3, 0 0 20px #7676e3, 0 0 30px #7676e3;
}
.trail {
position: absolute;
width: 25px;
height: 25px;
background-color: #7676e3; /* Lavender */
border-radius: 50%;
pointer-events: none;
opacity: 0.8;
z-index: 999;
box-shadow: 0 0 5px #7676e3, 0 0 10px #7676e3, 0 0 15px #8888d1;
animation: fadeOut 0.3s forwards;
}
@keyframes fadeOut {
to {
opacity: 0;
transform: scale(0.2);
}
}
a {
color: #7676e3; /* Lavender */
text-decoration: none;
}