-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.css
More file actions
62 lines (53 loc) · 840 Bytes
/
sample.css
File metadata and controls
62 lines (53 loc) · 840 Bytes
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
body {
background-color: #f0f4f8;
color: #333;
}
header {
background-color: #1e90ff;
padding: 20px;
color: white;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #333;
}
nav a {
color: white;
padding: 14px 20px;
text-decoration: none;
display: inline-block;
}
nav a:hover {
background-color: #575757;
}
section {
padding: 40px;
text-align: center;
}
.projects {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.card {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
width: 250px;
}
footer {
background-color: #1e90ff;
color: white;
text-align: center;
padding: 10px;
}