-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (66 loc) · 1.3 KB
/
style.css
File metadata and controls
70 lines (66 loc) · 1.3 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
body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #f2f2f2;
background-image: url(picy.jpg);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-box {
width: 300px;
padding: 40px;
position: relative;
background: #fff;
text-align: center;
box-shadow: 0 15px 25px rgba(16, 16, 16, 0.5);
border-radius: 10px;
box-sizing: border-box;
}
.login-box h1 {
margin: 0 0 30px;
padding: 0;
color: #120f0f;
text-transform: uppercase;
letter-spacing: 2px;
}
.textbox {
position: relative;
margin-bottom: 30px;
}
.textbox i {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
color: #090909;
}
.textbox input {
width: calc(100% - 40px);
padding: 10px 10px 10px 40px;
background: #f2f2f2;
border: none;
outline: none;
color: #333;
font-size: 18px;
border-radius: 5px;
box-sizing: border-box;
}
button {
width: 100%;
background: #181717;
border: none;
padding: 10px;
cursor: pointer;
font-size: 18px;
color: #fff;
border-radius: 5px;
text-transform: uppercase;
letter-spacing: 2px;
box-sizing: border-box;
}
button:hover {
background: #555;
}