-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreate_Account_style.css
97 lines (94 loc) · 1.49 KB
/
Create_Account_style.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
body
{
margin:0;
padding: 0;
font-family: sans-serif;
background: url(background.jpg) no-repeat;
}
.log-box
{
background: rgba(0, 0, 0, 0.712);
color:#fff;
width: 320px;
height:420px;
top:58%;
left:50%;
transform: translate(-50%,-50%);
box-sizing: border-box;
position: absolute;
padding: 70px 30px;
}
h1
{
margin: 5;
padding: 0 0 20px;
text-align: center;
font-size: 40px;
font-family: cursive;
}
.usrimg
{
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
position: absolute;
top: -50px;
left: 100px;
}
h2
{
margin-bottom:10px;
padding: 0 0 20px;
text-align: center;
}
.log-box p
{
margin: 0;
padding: 0;
font-weight: bold;
color: #fff;
}
.log-box input
{
width: 100%;
margin-bottom: 20px;
height: 30px;
}
.log-box input[type="text"], .log-box input[type="password"]
{
border: none;
border-bottom: 1px solid #fff;
background: transparent;
outline: none;
height: 40px;
font-size: 18px;
cursor: pointer;
color: white;
}
a
{
color: white;
text-decoration: none;
font-size: large;
}
a:hover
{
font-size: larger;
}
.log-box input[type="submit"]
{
position: relative;
bottom: -30px;
left: 70px;
width: 100px;
font-size: large;
font-weight: bold;
outline:none;
box-shadow:5px 5px 0px black;
}
.log-box input[type="submit"]:hover
{
box-shadow: 8px 8px 5px black;
outline: none;
}