-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
95 lines (82 loc) · 1.6 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
87
88
89
90
91
92
93
94
95
body {
font-family: Arial, sans-serif;
margin: 0;
background: linear-gradient(to right, #0a0e1a, #273964);
color: #ffffff;
}
header {
display: flex;
justify-content: space-between;
padding: 20px;
background-color: #0f1424;
}
.logo img {
height: 50px;
}
nav ul {
list-style: none;
display: flex;
gap: 20px;
}
nav ul li a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
color: #ffcc00;
text-decoration: underline;
}
.hero {
text-align: center;
padding: 100px 20px;
background-color: #1b2338;
}
.hero h1 {
font-size: 3em;
color: #ffcc00;
}
.hero p {
font-size: 1.5em;
color: #d1d1d1;
}
.cta-button {
padding: 10px 20px;
background-color: #ffcc00;
color: #0a0e1a;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
.cta-button:hover {
background-color: #ffffff; /* Change to a different color on hover */
color: #0a0e1a; /* Text color on hover */
}
.about, .events, .contact {
padding: 50px 20px;
background-color: #1b2338;
text-align: center;
}
footer {
text-align: center;
padding: 20px;
background-color: #141a2b;
}
input, textarea {
width: 80%;
padding: 10px;
margin: 10px 0;
border-radius: 5px;
border: none;
}
button {
padding: 10px 20px;
background-color: #ffcc00;
color: #0a0e1a;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #ffd633;
}