-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (51 loc) · 970 Bytes
/
styles.css
File metadata and controls
61 lines (51 loc) · 970 Bytes
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
body {
background-image: url('https://shorturl.at/ehnzO');
background-size: 50%;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
border: 1px solid #f9f5f5;
border-radius: 8px;
background-color: #230751;
}
header {
text-align: center;
margin-bottom: 20px;
}
header img {
max-width: 100%;
height: 50%;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
color: #ffffff;
}
.form-group {
margin-bottom: 15px;
color: #ffffff;
}
label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}
input[type="email"],
input[type="date"],
input[type=text],
button {
width: 100%;
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
}
button {
background-color: #ffffff;
color: #371561;
cursor: pointer;
}
button:hover {
background-color: #b79ede;
}