forked from Praptii21/sanity-saviour
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (99 loc) · 2.34 KB
/
style.css
File metadata and controls
120 lines (99 loc) · 2.34 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
/* Default Light Mode Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4; /* Light background */
color: #333; /* Dark text color */
}
header {
background-color: #0b0b0c;
color: white;
padding: 20px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #0a0c0e;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 18px;
}
nav a:hover {
text-decoration: underline;
}
.container {
padding: 20px;
}
.section {
margin-bottom: 20px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #003d80;
color: white;
position: relative;
bottom: 0;
width: 100%;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #003d80;
color: white;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
}
.button:hover {
background-color: #a1c4fd;
}
/* Dark Mode Styles */
body.dark-mode {
background-color: #333; /* Dark background */
color: white; /* Light text color */
}
header.dark-mode {
background-color: #000; /* Black background for header */
color: rgb(245, 237, 237); /* White text color for header */
}
header.dark-mode h1, header.dark-mode p {
color: white; /* Ensure header text is white in dark mode */
}
nav.dark-mode {
background-color: #222; /* Dark nav background */
}
nav.dark-mode a {
color: #ccc; /* Light text in nav */
}
nav.dark-mode a:hover {
text-decoration: underline;
color: #fff; /* Hover color for links */
}
.container.dark-mode {
background-color: #444; /* Dark background for the container */
}
.section.dark-mode {
background-color: #333; /* Dark background for each section */
color: white; /* Light text in each section */
}
footer.dark-mode {
background-color: #222; /* Dark footer background */
}
.button.dark-mode {
background-color: #555; /* Dark background for buttons */
}
.button.dark-mode:hover {
background-color: #010814; /* Lighter color on hover */
}