-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
86 lines (74 loc) · 1.28 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
74
75
76
77
78
79
80
81
82
83
84
85
86
/* General page styles */
body {
background-color: cadetblue;
font-family: Arial, sans-serif;
}
/* Gradient background for the header */
header {
background: linear-gradient(to right, lightblue, purple);
color: white;
font-size: 30px;
font-family: cursive;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
/* Center the navbar links */
.info {
display: flex;
justify-content: center;
margin-top: 10px;
}
.info a {
color: aliceblue;
text-decoration: none;
font-size: 20px;
font-family: cursive;
margin: 0 20px; /* Space between links */
}
.info a:hover {
color: lightgray;
}
/* Form styling */
strong {
font-size: 20px;
margin-right: 10px;
}
select, input[type="text"], input[type="email"] {
margin: 10px;
padding: 5px;
font-size: 16px;
}
#button {
font-family: monospace;
width: 120px;
height: 30px;
margin-top: 20px;
background-color: black;
color: white;
border: none;
cursor: pointer;
}
#button:hover {
background-color: gray;
}
/* Image gallery styling */
.image-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-top: 30px;
}
img {
transition: 0.5s;
border-radius: 10px;
}
img:hover {
transform: scale(1.1);
}
img {
width: 300px;
height: 300px;
}