-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (55 loc) · 1.06 KB
/
styles.css
File metadata and controls
73 lines (55 loc) · 1.06 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: linear-gradient(to right, rgb(183, 237, 183), rgb(173, 224, 128));
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
font-family: monospace;
}
main {
max-width: 70%;
width: 650px;
min-width: 450px;
display: flex;
flex-direction: column;
gap: 2rem;
padding: 2rem;
border-radius: 10px;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
background-color: #bdebd2;
color: #008b8b;
}
.input {
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 1.5rem;
padding: 1rem 3rem;
width: 100%;
font-size: 1.2rem;
}
label {
font-size: 1.2rem;
}
input {
width: 70%;
font-size: 1.2rem;
outline: none;
border: 1px solid rgb(164, 199, 78);
background-color: #d0f2dc;
width: 50%;
height: 2rem;
}
.input-block {
display: flex;
justify-content: space-between;
}
h1 {
font-size: 2rem;
}