-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (69 loc) · 1.2 KB
/
style.css
File metadata and controls
70 lines (69 loc) · 1.2 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background-image: url("./assets/marko-sun--Mbs5_RHkNI-unsplash.jpg");
background-size: cover;
font-family: sans-serif;
padding: 12% 33%;
}
.form-box {
background: rgba(0, 0, 0, 0.8);
padding: 50px 0;
color: white;
box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.5);
}
h1 {
text-align: center;
margin-bottom: 40px;
}
.input-box {
width: 80%;
margin: 2rem auto;
padding: 10px 0 5px;
border-bottom: 1px solid white;
}
.input-box > input {
width: 87%;
border: none;
outline: none;
background-color: transparent;
color: white;
}
::placeholder {
color: #cccccc;
}
.fa-solid {
margin-right: 10px;
}
.eye {
position: absolute;
}
#hide {
display: none;
}
.login-btn {
display: block;
width: 80%;
margin: 40px auto 20px;
padding: 10px 0;
outline: none;
border: 1px solid white;
letter-spacing: 0.3em;
background-color: transparent;
color: white;
cursor: pointer;
font-size: 1rem;
}
.shout-out {
position: fixed;
bottom: 30px;
right: 10px;
color: white;
}
.shout-out a {
text-decoration: none;
}