-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
108 lines (94 loc) · 1.82 KB
/
style2.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
body{
background-color: bisque;
}
.formdiv{
background-color: aquamarine;
width: 300px;
height: 430px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-top-left-radius: 30px;
border-top-right-radius: 30px;
}
.logintext{
width: 100%;
}
.form{
/* display: flex; */
justify-content: space-between;
height: 23rem;
display: grid;
grid-template-rows: repeat(3, 1fr);
grid-template-rows: 100px;
}
table{
table-layout: fixed;
border-spacing: 10px;
padding: 5px;
width: 100%; height: 100%;
}
td div{
width: 100%;
text-align: center;
}
td{
align-content: center;
justify-content: space-between;
}
tr td{
/* background-color: aqua; */
max-height: 20%;
}
h1{
text-align: center;
margin: 5px;
}
input[type="email" i] {
padding: 10px 2px;
width: 90%;
border-radius: 15PX;
}
input[type="password" i]{
padding: 10px 2px;
width: 90%;
border-radius: 15PX;
}
input[type="text" i]{
padding: 10px 2px;
width: 90%;
border-radius: 15PX;
}
.entermail,.enterpassword{
margin: 3px;
font-size: medium;
font-family: Arial, Helvetica, sans-serif;
color: red;
font-weight: bolder;
}
.wrongmail,.wrongpassword,.emailalreadyexsists{
font-size: medium;
font-family: Arial, Helvetica, sans-serif;
color: red;
font-weight: bolder;
}
.loginbutton,.singupbutton{
width: 50%;
height: 30px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
/*
body{
text-align: center;
} */
.hidden{
display: none;
}
.invalid-info{
border-bottom: red 0.4rem solid;;
}
.valid-info{
border-bottom: rgb(28, 191, 52) 0.4rem solid;;
}