-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (65 loc) · 1.47 KB
/
style.css
File metadata and controls
77 lines (65 loc) · 1.47 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
body {
background: #081921;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.login-box {
width: 350px;
height: 400px;
background: rgb(8,25,33);
margin: 150px auto;
border-radius: 10px;
box-shadow: 5px 5px 10px #29C790, -5px -5px 10px #29C790;
}
img {
width: 110px;
height: 110px;
position: relative;
top: -50px;
left: 35%;
border-radius: 20%;
box-shadow: 5px 5px 10px #29C790, -5px -5px 10px #29C790;
}
h2 {
margin: -25px 0 20px 0;
text-align: center;
color: #fff;
}
form {
margin-left: 40px;
}
input {
display: block;
width: 80%;
margin-bottom: 20px;
padding: 10px;
border: none;
outline: none;
font-family: sans-serif;
background: transparent;
font-size: 16px;
border-radius: 25px;
color: #ffff;
box-shadow: inset 2px 2px 5px #29C790, inset -5px -5px 10px #29C790;
}
button {
width: 87%;
border: none;
height: 35px;
border-radius: 25px;
background: #081921;
color: #fff;
font-size: 20px;
cursor: pointer;
box-shadow: -5px -5px 10px rgb(41,200,144), 5px 5px 10px rgb(41,200,144);
outline: none;
}
button:active {
box-shadow: inset 1px 1px 2px #babecc, inset -1px -1px 2px #fff;
}
a {
margin-left: 32%;
color: #fff;
font-size: 16px;
text-decoration: none;
}