-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogsign.css
More file actions
125 lines (113 loc) · 1.95 KB
/
logsign.css
File metadata and controls
125 lines (113 loc) · 1.95 KB
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
119
120
121
122
123
124
125
.logsign{
width:100%;
justify-content: center;
align-items: center;
display: flex;
color: white;
height: 350px;
margin-top: 50px;
}
h1{
text-align: center;
letter-spacing: 2px;
color: #009688;
}
.signlog{
width: 70%;
display: flex;
justify-content: center;
align-items: center;
height: 500px;
background-color: #5050506b;
}
.login{
width: 50%;
display: flex;
justify-content: center;
height: 400px;
align-items: center;
}
.signup{
display: block;
width: 50%;
display: flex;
justify-content: center;
align-items: center;
height: 400px;
border-left: #009688 1px solid;
}
ul li{
list-style-type: none;
margin-top: 20px;
}
input{
width: 300px;
height: 40px;
border: none;
background-color: #5050509d;
padding-left: 10px;
}
.kid{
display: flex;
justify-content: center;
align-items: center;
}
.fpo{
letter-spacing: 1px;
color: #009688;
transition: 1s;
text-align: center;
}
.fpo:hover{
background-color: #009688;
color: white;
font-size: 16px;
cursor: pointer;
transition: 1s;
}
.joinn{
width: 180px;
height: 40px;
background-color: transparent;
color: white;
font-size: 16px;
text-transform: uppercase;
border: solid 2px white;
overflow: hidden;
letter-spacing: 2px;
box-shadow: 0 0 0 0;
}
.joinn:hover{
cursor: pointer;
background-color: #009688;
border: none;
letter-spacing: 4px;
transition: 1s;
}
#message {
display:none;
color: #000;
padding: 20px;
position: relative;
margin-top: 10px;
}
#message p {
padding: 10px 35px;
font-size: 18px;
}
.valid {
color: green;
}
.valid:before {
position: relative;
left: -35px;
content: "✔";
}
.invalid {
color: red;
}
.invalid:before {
position: relative;
left: -35px;
content: "✖";
}