-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (85 loc) · 1.4 KB
/
Copy pathstyle.css
File metadata and controls
103 lines (85 loc) · 1.4 KB
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
96
97
98
99
100
101
102
/* Reset some default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Global styles */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
line-height: 1.6;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav ul {
list-style: none;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #fff;
transition: color 0.3s;
}
nav a:hover {
color: #ff4500;
}
/* Home section styles */
#home {
text-align: center;
padding: 100px 0;
}
#home h1 {
font-size: 36px;
margin-bottom: 20px;
}
/* About section styles */
#about {
background-color: #fff;
padding: 40px;
}
#about h2 {
font-size: 24px;
margin-bottom: 20px;
}
/* Services section styles */
#services ul {
list-style: disc;
padding-left: 20px;
}
/* Portfolio section styles */
.portfolio-item {
margin-bottom: 20px;
}
.portfolio-item img {
max-width: 100%;
}
/* Contact section styles */
#contact form {
max-width: 400px;
margin: 0 auto;
}
#contact label,
#contact input,
#contact textarea {
display: block;
width: 100%;
margin-bottom: 10px;
}
#contact button {
background-color: #ff4500;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
}
#contact button:hover {
background-color: #ff8c00;
}