-
Notifications
You must be signed in to change notification settings - Fork 1
/
Revamped.css
75 lines (75 loc) · 1.57 KB
/
Revamped.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
.LoginList{
list-style-type: none;
margin: 0;
padding:0;
}
.LoginContainer{
background-image:linear-gradient(rgb(230, 255, 140),rgb(240, 255, 186),rgb(230, 255, 140));
width: fit-content;
height: fit-content;
color: rgb(63, 63, 63);
font-family:Arial, Helvetica, sans-serif;
display: block;
position: absolute;
top: 50%;
left: 50%;
margin: 0;
transform: translate(-50%, -50%);
padding: 20px;
border-radius: 10px;
font-size: small;
box-shadow: 0 0 50px rgba(168, 165, 0, 0.507);
}
.LoginContainer h1{
text-align: center;
}
.LoginForm{
margin: 0;
}
.LoginFormContainer{
margin: 20px;
}
.ul{
margin: 0;
padding:0
}
.TextBox{
height:30px;
border-style: none;
outline: none;
margin-bottom: 20px;
font-size: 15px;
font-family: sans-serif;
border-radius: 5px;
background-image: linear-gradient(rgba(255, 254, 203, 0),white, white,white,rgba(240, 240, 240, 0));
}
.Submit{
float: right;
box-shadow: none;
border: none;
height: 30px;
font-weight: bold;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: rgb(255, 255, 255);
color: rgb(0, 89, 255);
}
.Submit:hover{
transition-duration: 500ms;
cursor:pointer;
border-radius: 10px;
box-shadow: 0 0 10px white;
background-color:rgb(242, 243, 153);
color: rgb(255, 255, 255);
box-shadow: 0 0 10px rgba(102, 102, 0, 0.452);
}
.left{
float:left;
margin: 0;
font-size: smaller;
}
a{
color: rgb(0, 174, 255);
}
a:hover{
color: rgb(0, 0, 0);
}