-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (77 loc) · 1.42 KB
/
Copy pathstyle.css
File metadata and controls
85 lines (77 loc) · 1.42 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
84
85
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css");
body {
margin: 0;
padding: 0;
background: url("CSS.jpg") no-repeat;
background-size: cover;
}
.image {
width: 100px;
height: 100px;
border-radius: 50px;
margin: 0px 40% 0px;
top: -45px;
position: absolute;
left: 8px;
}
.login-box {
background-color: #333333;
border: 3px solid grey;
border-radius: 10px;
padding: 100px;
width: 280px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}
.login-box h1 {
float: left;
font-size: 40px;
margin-top: 1px;
margin-bottom: 50px;
padding: 13px 5px 5px;
text-align: center;
}
.textbox {
width: 100%;
overflow: hidden;
font-size: 20px;
padding: 8px 0;
margin: 8px 0;
border-bottom: 1px solid #4caf50;
}
.textbox i {
width: 26px;
float: left;
text-align: center;
}
i.fa-eye {
position: absolute;
right: 100px;
}
.textbox input {
border: none;
outline: none;
background: none;
color: antiquewhite;
font-size: 18px;
width: 80px;
float: left;
margin: 0 10px;
width: 70%;
}
.btn {
width: 100%;
height: 40px;
margin-bottom: 10px;
margin-top: 50px;
border-radius: 5px;
padding: 5px;
font-size: 18px;
cursor: pointer;
border-bottom: #45a049;
background-color: #45a049;
color: white;
}