-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (71 loc) · 1.24 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
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(to bottom, #1e3c72, #2a5298);
color: #fff;
margin: 0;
padding: 0;
text-align: center;
}
.container {
padding: 20px;
max-width: 800px;
margin: auto;
}
/* Hero Image */
.hero {
width: 100%;
height: 200px;
object-fit: cover;
}
/* Headings */
.section-heading {
font-size: 2.5rem;
font-weight: bold;
margin: 20px 0 10px;
font-family: serif;
color: #ffcc00;
}
.section-subheading {
font-size: 1.2rem;
margin-bottom: 20px;
}
/* Dropdown Menu */
select {
width: 80%;
padding: 10px;
font-size: 1rem;
border: none;
border-radius: 5px;
background: #fff;
color: #333;
}
select:focus {
outline: none;
border: 2px solid #ffcc00;
}
/* Results */
#results {
margin-top: 20px;
font-size: 1.2rem;
}
#results h2 {
font-size: 2rem;
margin-bottom: 10px;
}
/* Footer */
footer {
margin-top: 20px;
padding: 10px;
background: #1e3c72;
color: #fff;
position: fixed;
width: 100%;
bottom: 0;
}
footer a {
color: #ffcc00;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}