-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (50 loc) · 899 Bytes
/
styles.css
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
:root {
--darkgreen: rgb(0, 24, 0);
--deepforestgreen: hsl(144, 100%, 10%);
--huntergreen: rgb(74, 103, 65);
}
html {
background-image: linear-gradient(#22311d, #4a6741);
background-repeat: no-repeat;
min-height: 100%;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Karla", sans-serif;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
width: 100%;
align-items: center;
margin-top: 50px;
}
input,
button {
max-width: max-content;
border: 0;
outline: 0;
border-radius: 10px;
padding: 10px;
}
button {
font-family: "Karla", sans-serif;
font-weight: bold;
}
#wrapper {
display: flex;
justify-content: center;
padding: 50px 0;
}
#container {
display: flex;
flex-direction: column;
overflow: hidden;
background-color: whitesmoke;
border-radius: 10px;
box-shadow: 0 3px 10px #22311d;
width: 325px;
}