-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (71 loc) · 1.54 KB
/
style.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
*{
margin: 0;
box-sizing: border-box;
}
html{
font-size: 12pt;
color: var(--text-color);
}
body{
min-height: 100vh;
background: url("https://unsplash.imgix.net/45/ZLSw0SXxThSrkXRIiCdT_DSC_0345.jpg?q=75&w=1080&h=1080&fit=max&fm=jpg&auto=format&s=857f07b76abac23a7fb7161cc7b12a46") no-repeat center;
background-size: cover;
position: relative;
font-family: "Young Serif", serif;
}
form {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding: 2rem 0;
border-radius: 10px;
}
.form-container{
height: 100vh;
background-color: tomato;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
max-width: 600px;
padding: 2rem 3rem;
}
h1{
font-size: 3rem;
font-weight: 900;
text-transform: uppercase;
margin-bottom: .5rem;
;
}
label{
margin-bottom: .5rem;
display: block;
text-align: left;
font-size: 1.2rem;
font-family: 'Outfit', sans-serif;
}
input{
width: 100%;
padding: .6rem;
max-width: 100%;
font-size: 1rem;
transition: 150ms ease;
border: 0;
border-radius: 5px;
padding: 1rem 3rem 1rem 1rem;
}
#fname-alert, #lname-alert, #email-alert {
margin-bottom: 3rem;
}
.btn-submit {
padding: 1rem 2rem;
background-color: #222;
color: white;
font-size: 1rem;
text-align: center;
&:hover{
background-color: #333;
}
}