-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (58 loc) · 1021 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
58
59
60
61
62
63
64
65
66
67
68
* {
box-sizing: border-box;
}
main {
height: 100vh;
margin: 5%;
font-family: 'Montserrat', sans-serif;
color: #303555;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 5%;
}
p {
padding: 0 5%;
max-width: 500px;
}
form {
display: flex;
flex-direction: column;
width: 60%;
max-width: 450px;
}
input:focus {
outline: 2px solid #303555;
box-shadow: 1px 1px 8px 1px #303555;
}
lable {
margin: 5px;
}
input {
margin: 5px;
padding: 5px;
border: 1px solid #303555;
border-radius: 5px;
}
button {
margin: 10px;
padding: 10px;
border: 1px solid #303555;
border-radius: 5px;
background-color: #303555;
color: white;
font-size: 18px;
box-shadow: 10px 10px 20px -8px #303555;
}
button:hover {
background-color: rgb(228, 215, 33);
border: 1px solid white;
font-weight: bold;
color: #303555;
}
footer {
text-align: right;
}