-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
95 lines (82 loc) · 1.57 KB
/
styles.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
93
94
95
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
color: #333; /* Dark grey for text */
background-color: #f4f4f9; /* Soft light blue background */
line-height: 1.6;
padding: 20px;
}
header {
background-color: #0056b3; /* Deep blue background */
color: #ffffff;
padding: 20px 0;
text-align: center;
}
nav {
margin-top: 10px;
}
nav ul {
list-style-type: none;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #ffffff;
font-size: 1.2em;
transition: color 0.3s ease;
}
nav a:hover {
color: #a2d2ff; /* Lighter blue for hover effect */
}
section {
background-color: #ffffff;
margin: 20px 0;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1{
color: white
}
h2 {
color: #333;
}
input[type="text"], input[type="email"], textarea {
width: 90%;
padding: 10px;
margin-top: 5px;
border-radius: 5px;
border: 1px solid #ccc;
display: block;
margin-bottom: 10px;
}
textarea {
height: 100px;
}
button {
padding: 10px 20px;
background-color: #0084ff; /* Bright blue */
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3; /* Darker blue for hover effect */
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px;
color: #666;
font-size: 0.8em;
}