-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles1.css
84 lines (74 loc) · 1.07 KB
/
styles1.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
``
/* Reset styles */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
/* Header styles */
header {
background-color: #333;
color: #fff;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin: 0 1rem;
}
nav ul li a {
text-decoration: none;
color: #fff;
}
/* Section styles */
section {
padding: 2rem;
}
/* Project styles */
.project-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.project img {
width: 100%;
}
/* Skill styles */
.skills ul {
list-style: none;
padding: 0;
}
/* Contact styles */
form {
margin-top: 1rem;
}
.testimonial-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.testimonial {
border: 1px solid #ccc;
padding: 1rem;
margin: 1rem;
width: 300px;
text-align: center;
}
#awards ul {
list-style: none;
padding: 0;
}
/* Footer styles */
footer {
text-align: center;
padding: 1rem;
background-color: #333;
color: #fff;
}