-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
52 lines (45 loc) · 1.14 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
/*UI for TritonClock*/
.container {
width: 500px;
margin: 20px auto;
text-align: center;
}
#timer {
font-size: 2em;
}
.neon-button {
border: none;
background-color: #747678;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
box-shadow:
0 0 10px #00C6D7,
0 0 20px #00C6D7,
inset 0 0 10px #00C6D7;
}
.neon-box {
background-color: #222; /* rgba(#222, 0.7); Dark background enhances the glow */
color: #fff; /* White text for contrast */
border: none; /* Remove default border */
padding: 10px;
border-radius: 5px; /* Slightly rounded corners */
box-shadow:
0 0 5px #00C6D7, /* Blue neon glow */
0 0 15px #00C6D7,
0 0 30px #00C6D7;
}
/* Add a subtle hover effect */
.neon-textarea:hover {
box-shadow:
0 0 8px #00C6D7,
0 0 20px #00C6D7,
0 0 40px #00C6D7;
}
.ucsd-blue-background {
background-color: #182B49; /* ucsd navy blue color */
}
.image-background {
background-image: url('forest.jpg');
background-size: cover; /* Make the image cover the whole area */
}