-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlight-theme.css
87 lines (73 loc) · 1.3 KB
/
light-theme.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
header {
background-color: royalblue;
padding: 20px;
text-align: center;
}
.custom-title {
color: white;
}
nav {
background-color: #f2f2f2;
padding: 10px;
text-align: right;
}
html,
body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
}
main {
background-color: #f2f2f2;
padding: 20px;
flex: 1;
}
section {
margin-bottom: 20px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
}
.custom-section {
background-color: #f2f2f2;
}
.custom-content {
text-align: left;
margin-left: 20px;
}
.custom-card {
margin-bottom: 20px;
text-align: center;
}
.custom-footer {
background-color: royalblue;
color: white;
text-align: center;
padding: 10px;
}
.icon-container a {
display: inline-block;
/* Ensure the anchor takes up the image size */
}
.icon-container img {
width: 40px;
height: auto;
/* Maintain the image aspect ratio */
vertical-align: middle;
/* Center the image vertically within the anchor */
margin-right: 5px;
}
/* Styles for the theme toggle button */
#theme-toggle {
border: none;
cursor: pointer;
background-color: #f2f2f2;
}
#theme-toggle-icon {
width: 40px;
height: auto;
}