-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 924 Bytes
/
styles.css
File metadata and controls
57 lines (49 loc) · 924 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
* {
margin: 1%;
padding: 1%;
box-sizing: border-box;
}
body {
font-family: "Andale Mono", "Courier New", monospace;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
background-color: #f4f4f4;
padding: 20px;
}
h1, p{
display: block;
}
#form {
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
max-width: 400px;
}
input, button {
font-family: inherit;
padding: 12px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 4px;
width: 100%;
}
button {
background-color: #333;
color: white;
cursor: pointer;
transition: background-color 0.2s;
}
button:hover {
background-color: #555;
}
label {
text-align: left;
}
span {
font-size: 2rem;
background-color: antiquewhite;
}