-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (60 loc) · 1.05 KB
/
Copy pathstyles.css
File metadata and controls
67 lines (60 loc) · 1.05 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
color: #5f6769;
font-family: monospace;
font-size: 1rem;
}
body {
display: flex;
justify-content: center;
}
form {
width: 50vw;
height: 50vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
padding-inline: 8%;
padding-block: 2%;
background-color: #dfcdc3;
border-radius: 20px;
margin-top: 5rem;
}
.input-field {
display: flex;
flex-direction: column;
width: 90%;
height: 20%;
}
input {
width: 100%;
height: 100%;
border-radius: 15px;
border: #719192 solid 2px;
display: flex;
padding-left: 1rem;
}
.button-holder {
width: 90%;
height: 20%;
display: flex;
justify-content: center;
}
button {
width: 50%;
height: 60%;
border-radius: 15px;
background-color: white;
border: #719192 solid 2px;
cursor: pointer;
}
button:hover {
background-color: #719192;
border: none;
scale: 1.05;
color: white;
}