-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
84 lines (73 loc) · 1.32 KB
/
index.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
body{
margin: 0px;
padding: 0px;
background-image: url(img/second.jpg);
background-size: cover;
font-family: sans-serif;
background-repeat: no-repeat;
}
.service {
border-radius: .3em;
text-align: center;
background-color: lightgray;
padding: 3em 2em 1em 2em;
color: dodgerblue;
}
.loginBox{
padding: 50px 45px;
}
.user{
width: 100px;
height: 100px;
border-radius: hidden;
overflow: hidden;
position: absolute;
top: calc(-100px/2);
left: calc(50% - 50px);
}
.loginBox h3{
margin: 0;
padding: 0 0 15px;
text-align: center;
font-family: castellar;
}
.loginBox p{
margin: 0;
padding: 0;
font-weight: bold;
color: gray;
}
.loginBox input, button{
width: 100%;
margin-bottom: 20px;
}
.loginBox input[type="text"],
.loginBox input[type="password"],
.loginBox input[type="email"]
{
border: none;
border-bottom: 1px solid #fff;
background: transparent;
outline: none;
color: white;
font-size: 16px;
}
::placeholder{
color: rgba (255,255,255,.5);
}
.loginBox button{
width: 100%;
margin-bottom: 5px;
border: none;
outline: none;
height: 40px;
font-size: 16px;
cursor: pointer;
border-radius: 20px;
}
.loginBox a{
color: white;
font-size: 14px;
font-weight: bold;
text-decoration: none;
}