-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathshyam.css
93 lines (73 loc) · 1.44 KB
/
shyam.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
88
89
90
91
92
93
body {
background-image: linear-gradient(to bottom, #f06b6b, #f7f265, #85f779);
background-attachment: fixed; /* This ensures the gradient doesn't scroll */
}
header nav ul li a:hover {
background-color: yellowgreen;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
list-style: none;
margin: 0;
padding: 0;
}
.image-gallery img {
width: %; /* Adjust the width as needed */
height: auto;
margin: 10px;
border: 1px solid #ccc;
}
header nav ul li a {
text-decoration: none;
color: #333;
padding: 10px;
border-radius: 5px;
text-align: center;
padding: 20px;
}
main {
padding: 20px;
}
.event-updates {
margin-top: 20px;
}
footer {
text-align: center;
padding: 10px;
background-color: #eee;
}
/* Your existing CSS styles */
#feedback {
text-align: center;
margin-top: 20px;
}
#feedbackForm {
width: 50%;
margin: 0 auto;
}
#feedbackSuccess {
color: green;
text-align: center;
margin-top: 10px;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #f0f0f0;
}
h1 {
font-size: 36px;
font-weight: bold;
color: #333;
}
img {
max-width: 100%;
height: auto;
}
.image-gallery {
display: flex;
justify-content: space-between;
}