-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (94 loc) · 2.32 KB
/
Copy pathstyle.css
File metadata and controls
122 lines (94 loc) · 2.32 KB
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
body {
background: radial-gradient(circle at top left, #020617, #000000);
color: #e6f1ff;
font-family: 'Poppins', sans-serif;
}
.navbar {
background: linear-gradient(90deg, #001f3f, #002f6c, #001f3f);
box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}
.navbar-brand {
color: #4dd0ff !important;
text-shadow: 0 0 10px rgba(77, 208, 255, 0.9);
}
.nav-link {
color: #cfe8ff !important;
transition: 0.3s ease;
}
.nav-link:hover {
color: #4dd0ff !important;
text-shadow: 0 0 8px #4dd0ff;
}
.carousel-inner img {
filter: brightness(75%);
}
.carousel-caption {
backdrop-filter: blur(10px);
border: 1px solid rgba(77, 208, 255, 0.4);
box-shadow: 0 0 20px rgba(77, 208, 255, 0.5);
}
h2 {
color: #4dd0ff;
text-shadow: 0 0 12px rgba(77, 208, 255, 0.8);
animation: glow 3s infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 5px #00ffff, 0 0 10px #0099ff;
}
to {
text-shadow: 0 0 20px #00ccff, 0 0 40px #00ffff;
}
}
.list-group-item {
background: rgba(0, 30, 60, 0.85);
color: #d7e9ff;
border: 1px solid rgba(77, 208, 255, 0.25);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.list-group-item:hover {
transform: scale(1.05);
box-shadow: 0 0 15px rgba(77, 208, 255, 0.6);
}
a {
color: #4dd0ff;
text-decoration: none;
}
a:hover {
color: #82f7ff;
}
.btn-primary {
background: linear-gradient(135deg, #003366, #0066cc);
border: none;
box-shadow: 0 0 10px rgba(77, 208, 255, 0.5);
transition: all 0.3s ease;
}
.btn-primary:hover {
background: linear-gradient(135deg, #0066cc, #00aaff);
box-shadow: 0 0 25px rgba(77, 208, 255, 0.8);
transform: scale(1.05);
}
.modal-content {
background: rgba(10, 20, 40, 0.95);
color: #e6f1ff;
border: 1px solid rgba(77, 208, 255, 0.4);
box-shadow: 0 0 25px rgba(77, 208, 255, 0.6);
}
.modal-header,
.modal-footer {
border-color: rgba(77, 208, 255, 0.2);
}
#successAlert {
background: linear-gradient(90deg, #003366, #0099ff);
border: none;
box-shadow: 0 0 20px rgba(77, 208, 255, 0.6);
color: #fff;
}
footer {
background: linear-gradient(90deg, #001f3f, #002f6c);
box-shadow: 0 -2px 15px rgba(77, 208, 255, 0.4);
}
footer p {
color: #82f7ff;
text-shadow: 0 0 5px rgba(77, 208, 255, 0.8);
}