-
Notifications
You must be signed in to change notification settings - Fork 0
/
passstyles.css
59 lines (56 loc) · 1022 Bytes
/
passstyles.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
*{
margin: 0;
padding: 0;
}
body{
background-image: url(./coolcraft_servers.jpeg);
background-size: cover;
background-position: center;
font-family: sans-serif;
}
.form-box{
width: 500px;
background: rgba(0,0,0,0.8);
margin: 12% auto;
padding: 50px 0;
color: #fff;
box-shadow: 0 0 20px 2px rgba(0,0,0,0.5);
}
h1{
text-align: center;
margin-bottom: 40px;
}
.i{
text-align: center;
margin-bottom: 40px;
}
.input-box{
margin: 31px;
width: 80%;
border-bottom: 1px solid #fff;
padding-top: 10px;
padding-bottom: 5px;
}
.input-box input{
width: 90%;
border: none;
outline: none;
background-color: transparent;
color: #FFF;
}
.login-btn{
margin: 40px auto 20px;
width: 80%;
display: block;
outline: none;
padding: 10px 0;
border: 1px solid #FFF;
cursor: pointer;
background: transparent;
color: #FFF;
font-size: 16px;
text-align: center;
}
::placeholder{
color: lightblue;
}