-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (95 loc) · 1.56 KB
/
Copy pathstyles.css
File metadata and controls
110 lines (95 loc) · 1.56 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
103
104
105
106
107
108
109
110
/* Global Styles */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #e8eae5;
color: #2f3e34;
}
.container {
width: 90%;
max-width: 1100px;
margin: 0 auto;
padding: 20px;
}
.header {
background-color: #6d8372;
color: white;
padding: 20px 0;
}
.header h1 {
margin: 0;
}
nav ul {
list-style: none;
padding: 0;
margin: 10px 0 0;
display: flex;
gap: 20px;
}
nav a {
color: #f3e9f7;
text-decoration: none;
font-weight: bold;
}
.hero {
background-color: #cfd6cf;
text-align: center;
padding: 100px 20px;
}
.hero h2 {
font-size: 2.5em;
margin-bottom: 20px;
color: #2f3e34;
}
.hero p {
font-size: 1.2em;
margin-bottom: 30px;
color: #4e5d50;
}
.btn {
background-color: #a18dae;
color: white;
padding: 12px 25px;
text-decoration: none;
border-radius: 5px;
font-size: 1em;
}
.footer {
background-color: #6d8372;
color: white;
text-align: center;
padding: 20px 0;
font-size: 0.9em;
}
/* Contact Page Specific */
.contact-form {
background-color: #f3f4f0;
padding: 40px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.contact-form label {
display: block;
margin: 15px 0 5px;
font-weight: bold;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.contact-form button {
margin-top: 20px;
background-color: #a18dae;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 1em;
}
.contact-form button:hover {
background-color: #8c769a;
}