-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss-mods.css
More file actions
84 lines (69 loc) · 1.28 KB
/
css-mods.css
File metadata and controls
84 lines (69 loc) · 1.28 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
/* General styling */
body {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #1c1c1c;
color: #a49ceb;
}
main {
flex: 1;
}
footer {
margin-top: auto;
padding: 1rem;
background-color: #2c2934;
color: #a49ceb;
text-align: center;
border-top: 1px solid #54547c;
}
/* Navbar styling */
.navbar {
background-color: #1c1c1c;
color: #a49ceb;
}
/* Card styling */
.card {
background-color: #2c2934;
border: 1px solid #54547c;
border-radius: 8px;
color: #a49ceb;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.card-title, h3, h4 {
color: #ffcc00;
}
p {
color: #ccc;
}
/* Call to action styling */
#call-to-action {
text-align: center;
background-color: #3c344c;
}
#call-to-action a {
color: #ffcc00;
font-weight: bold;
}
#call-to-action a:hover {
text-decoration: underline;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.navbar {
padding: 0.5rem;
}
.card {
margin-bottom: 1rem;
}
}
.additional-definition {
margin-bottom: 1rem;
}
.source-line {
margin-top: 0.5rem;
font-size: 0.9rem;
}
.definition-separator {
margin: 1rem 0;
}