-
Notifications
You must be signed in to change notification settings - Fork 4
/
signup.css
118 lines (103 loc) · 1.86 KB
/
signup.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
*{
margin: 0px;
padding: 0px;
background-color: aliceblue;
}
.outerclass
{
display: grid;
margin: 50px 100px 50px 100px;
width: 1300px;
height: 100vh;
box-shadow: 0px 0px 10px 2px #ccc;
grid-template-columns: 1fr 1fr;
}
.moving
{
display: flex;
height: 100vh;
align-items: center;
justify-content: center;
background: #1D1E23;
}
h1 {
color: #fff;
font-size: 2rem;
font-weight: 600;
background-color:#1D1E23;
}
h1 span {
color: #BD53ED;
position: relative;
background-color: #1D1E23;
}
h1 span::before {
content: "";
height: 30px;
width: 2px;
position: absolute;
top: 50%;
right: -8px;
background: #BD53ED;
transform: translateY(-45%);
animation: blink 0.6s infinite;
}
h1 span.stop-blinking::before {
animation: none;
}
@keyframes blink {
50% { opacity: 0 }
}
form
{
margin: 60px 40px 20px 40px;
}
form h1
{
background-color:aliceblue;
color:#BD53ED;
margin: 0px 10px 30px 10px;
font-size:60px;
}
.inp
{
display: block;
margin: 10px;
width: 90%;
height: 30px;
box-shadow: 0px 0px 10px 2px #ccc;
border: 0px;
background-color:'#E5CCFF';
}
button
{
display: block;
width: 90%;
margin: 30px 10px 10px 10px;
padding: 10px 25px;
background-color:rgb(229,204,255);
cursor: pointer;
border: 0px;
box-shadow: 0px 0px 10px 2px #ccc;
font-size: 15px;
}
.login
{
margin: 10px 40px 50px 40px;
}
#t1
{
color:#8a37b0;
}
.logbut
{
display: block;
width: 90%;
margin: 30px 10px 10px 10px;
padding: 10px 25px;
background-color:rgb(229,204,255);
cursor: pointer;
border: 0px;
box-shadow: 0px 0px 10px 2px #ccc;
font-size: 15px;
}