-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
59 lines (50 loc) · 881 Bytes
/
custom.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
/* styles.css */
body {
background-color: #caf0f8;
font-family: sans-serif;
font-size: 16px;
}
.container {
max-width: 960px;
margin: 0 auto;
}
.header {
background-color: #000000;
color: #ffffff;
padding: 20px;
text-align: center;
}
.title {
font-size: 24px;
font-weight: bold;
}
.subtitle {
font-size: 18px;
font-weight: normal;
}
.card {
background-color: #ffffff;
border: 1px solid #000000;
padding: 20px;
margin-bottom: 20px;
}
.card-header {
background-color: #000000;
color: #ffffff;
padding: 10px;
text-align: center;
}
.card-body {
padding: 20px;
}
.button {
background-color: #0074D9; /* Replace with your desired theme color */
color: #ffffff;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
.button:hover {
background-color: #ffffff;
color: #0074D9; /* Replace with your desired theme color */
}