-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (52 loc) · 863 Bytes
/
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background: #0078d7;
color: #fff;
padding: 1rem 0;
text-align: center;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
background: #004a99;
margin: 0;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
.container {
padding: 20px;
}
footer {
background: #222;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
h1, h2, h3 {
color: #0078d7;
}
.card {
background: #fff;
border: 1px solid #ddd;
border-radius: 5px;
margin: 20px 0;
padding: 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}