-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (73 loc) · 1.44 KB
/
style.css
File metadata and controls
83 lines (73 loc) · 1.44 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
74
75
76
77
78
79
80
81
82
83
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.background {
position: absolute;
height: 100vh;
width: 100vw;
background: url('https://images.unsplash.com/photo-1551091708-fda32ed3178c?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80') center center no-repeat;
background-size: cover;
z-index: -1;
filter: blur(20px);
}
.container {
display: flex;
justify-content: center;
flex-direction: column;
background-color: white;
width: 400px;
padding: 20px;
border-radius: 5px;
}
.container h2 {
margin-top: 25px;
font-size: 30px;
text-align: center;
letter-spacing: 1px;
font-weight: 500;
}
.container h4 {
text-align: center;
font-weight: 100;
}
.form {
margin: 10px 0px;
font-size: 18px;
}
.form label {
display: block;
margin: 5px 0;
}
.form input {
margin: 5px 0;
width: 100%;
height: 40px;
font-size: 15px;
padding: 10px;
outline: none;
border: 0.5px solid rgb(189, 189, 189);
border-radius: 4px;
}
.form .btn {
margin: 15px 0;
width: 100%;
height: 35px;
font-size: 17px;
border-radius: 5px;
outline: none;
background-color: black;
color: white;
border: none;
cursor: pointer;
}
.btn:active {
transform: scale(0.98);
}