forked from Vercantez/vercantez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (96 loc) · 1.66 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
/* Theme Name: Dark */
html {
background-color: #1e1e2f;
/* color: #00ffac; */
color: white;
font-family: 'Nunito', sans-serif;
text-align: center;
}
a {
color: #00ffac;
}
a:visited {
color: #00ffac;
}
svg {
padding: 2px;
color: #00ffac;
}
#summary {
font-family: sans-serif;
font-size: 16px;
/* justify left */
text-align: left;
color: white;
line-height: 1.25;
}
#floating-box {
position: absolute;
background-color: #1e1e2f;
border: 1px solid #00ffac;
border-radius: 8px;
box-sizing: border-box;
padding: 10px;
display: none;
z-index: 9999;
color: black;
min-height: 35px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
/* min-width: 400px; */
}
#dismiss {
position: absolute;
top: 3px;
right: 3px;
cursor: pointer;
width: 24px;
height: 24px;
fill: #333;
}
#dismiss:hover {
fill: #555;
}
ul {
padding-inline-start: 20px;
margin-block-start: 1em;
}
li {
margin-bottom: 5px; /* Add margin between list items */
}
button {
font-family: 'Nunito', sans-serif;
font-size: 18px;
font-style: italic;
color: #fff;
text-shadow: 0 0 1px #00ffac,
0 0 3px #00ffac;
/* dark blue gray */
background-color: #1e1e2f;
border: 2px solid #00ffac;
/* border shadow */
box-shadow: 0 0 5px #00ffac, 0 0 5px #00ffac inset;
border-radius: 5px;
padding: 0px 10px !important;
}
.animate span {
animation: fadeOut 1s ease-in-out infinite alternate;
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@media (hover: hover) {
button:hover {
background-color: #FF5252; /* Light red */
color: #FFFFFF; /* White */
}
}
/* Clicked style */
button:active {
background-color: #2196F3; /* Blue */
color: #FFFFFF; /* White */
}