-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (63 loc) · 1.19 KB
/
styles.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
body {
font-family: Arial, sans-serif;
background-color: #e3f2fd; /* Light blue background */
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #1e88e5; /* Blue */
color: white;
text-align: center;
padding: 1em 0;
}
header h1 {
margin: 0;
}
section {
padding: 2em;
text-align: center;
}
h2 {
color: #1e88e5; /* Blue */
}
#gallery img {
width: 100px;
height: 100px;
margin: 0.5em;
border-radius: 10px;
border: 2px solid #000; /* Black border */
}
blockquote {
font-style: italic;
color: #555; /* Dark grey */
}
#proposalButton {
background-color: #1e88e5; /* Blue */
color: white;
border: none;
padding: 1em 2em;
font-size: 1em;
cursor: pointer;
border-radius: 5px;
}
#proposalButton:hover {
background-color: #1565c0; /* Slightly darker blue */
}
footer {
background-color: #1e88e5; /* Blue */
color: white;
text-align: center;
padding: 1em 0;
position: fixed;
width: 100%;
bottom: 0;
}
/* Krishna-themed accent */
#krishnaAccent {
background-color: #000; /* Black */
color: white;
padding: 2em;
margin: 1em 0;
border-radius: 10px;
}