-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUser_css.css
76 lines (74 loc) · 1.37 KB
/
User_css.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
body{
background-color: #000000;
/* background-repeat: no-repeat;
background-size: cover;
text-align: center; */
color: #ffffff;
}
html,body{ /*Used here to remove the extra space from bottom*/
height: 100%;
padding: 0;
margin-top: -225px;
}
.logo{
width: 500px;
height: 1080px;
}
img{
position: absolute;
top: 50;
left: 100;
width: 550px;
border-radius: 300px;
}
h1{
padding: 10px;
font-style: bold;
}
.login{
background-color: #1f1d1d;
border-radius: 75px;
text-align: center;
padding-top: 50px;
width: 500px;
height: 450px;
position: absolute;
top:100;
right:150;
font-size: larger;
}
input{
text-align: center;
width: 200px;
height: 50px;
opacity: 0.5;
border-radius: 25px;
}
input:hover{
opacity: 1;
}
label{
font-size: larger;
}
a{
font-size: larger;
color: #ffffff;
text-decoration: none;
}
button{
width: 110px;
height: 55px;
border-radius: 100px;
transition: width 500ms, height 500ms, font-size 500ms;
opacity: 0.75;
outline-style: dashed ;
outline-width: 5px;
outline-color: rgb(93, 93, 99);
}
button:hover{
width: 150px;
height: 75px;
border-radius: 100px;
opacity: 1;
font-size: larger;
}