-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
92 lines (79 loc) · 1.55 KB
/
Style.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
/* Reset some default styles for consistency */
body, h2, h3, p {
margin: 0;
padding: 0;
}
h1{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
/* Apply a background color to the body */
body {
background-color: #f0f0f0;
font-family: Arial, sans-serif;
}
/* Style the header */
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
/* Style the navigation menu */
nav ul {
list-style: none;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
/* Style the sections */
section {
padding: 40px;
margin: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
/* Style the portfolio projects */
.project {
margin-bottom: 20px;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
}
.project img {
max-width: 100%;
height: auto;
}
/* Style the contact form */
form label {
display: block;
margin-bottom: 5px;
}
form input[type="text"],
form input[type="email"],
form textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 3px;
}
form button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 20px;
cursor: pointer;
}
/* Style the footer */
footer {
text-align: center;
padding: 10px 0;
background-color:burlywood;
color: #fff;
}