-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (68 loc) · 1.18 KB
/
style.css
File metadata and controls
78 lines (68 loc) · 1.18 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
body {
font-family: Arial, sans-serif;
background-color: #f0fff0;
margin: 0;
padding: 0;
color: #2e5d34;
}
header {
background-color:#4360d6;
color: #ffffff;
text-align: center;
padding: 2rem;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
main {
padding: 2rem;
}
section {
margin-bottom: 2rem;
background-color: #ffffff;
padding: 1.5rem;
border-radius: 10px;
box-shadow: 0 0 10px #ffffff(0,0,0,0.1);
}
form input[type="text"],
form textarea {
width: 100%;
padding: 0.5rem;
margin-top: 0.5rem;
border: 1px solid #ffffff;
border-radius: 5px;
}
form input[type="submit"] {
background-color: #2c39a1;
color: #ffffff;
padding: 0.7rem 1.5rem;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 1rem;
}
form input[type="submit"]:hover {
background-color: #2c39a1;
}
footer {
background-color: #2c39a1;
color: white;
text-align: center;
padding: 1rem;
position: fixed;
bottom: 0;
width: 100%;
}
a button {
background-color: #1e3d9b;
color: rgb(255, 255, 255);
padding: 0.8rem 1.5rem;
border: none;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
}
a button:hover {
background-color: #3c4ac9;
}