-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.css
97 lines (84 loc) · 1.58 KB
/
login.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
85
86
87
88
89
90
91
92
93
94
95
96
97
@font-face {
font-family: minecraft;
src: url(Minecraft.ttf);
}
#content {
font-family: Roboto;
background-color: rgb(128, 76, 34);
display: flex;
align-items: center;
justify-content: center;
height:100vb;
margin: 0px;
}
#back {
position: fixed;
left: 10px;
top: 10px;
background: unset;
border: unset;
color:white;
height: 50px;
width: 50px;
font-size: 25pt;
}
:hover #back {
cursor:pointer;
}
#home {
position: fixed;
left: 70px;
top: 10px;
background: unset;
border: unset;
color:white;
height: 50px;
width: 50px;
font-size: 25pt;
}
:hover #home {
cursor:pointer;
}
.login{
background-color: rgb(169, 169, 169);
width: 400px;
color: white;
padding: 40px;
box-shadow: -5px -5px 1px rgb(199, 199, 199);
text-align: center;
border: rgb(76, 76, 76) solid 5px;
align-content: center;
background-image: image();
}
.login input{
display: block;
margin: 20px auto;
text-align: center;
background-color: none;
padding: 12px;
font-size: 15px;
border-radius: 5px;
outline: none;
}
.login input[type="text"], .login input[type="password"]{
border: 2px solid rgb(73, 199, 216);
width: 220px;
transition: 0.25s;
}
.login input[type="text"]:focus, .login input[type="password"]:focus{
border-color:rgb(0, 224, 253);
width: 250px;
transition: 0.25s;
}
.login input[type="submit"]{
width: 150ps;
border: 2px solid rgb(62, 184, 62);
cursor: pointer;
}
.login input[type="submit"]:hover{
background-color: rgb(255, 238, 0);
transition: 0.5s;
}
* {
font-family: minecraft;
}