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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
#email_label {
color: blue;
margin-top: 10px;
}
h3,
label {
font-family: Arial, Helvetica, sans-serif;
}
body {
/* background-color: #ccbbcc; */
background-color: #251f1f;
/* background-image: url(https://bit.ly/2XibZvI);
background-repeat: no-repeat;
background-size: cover; */
}
#logo {
width: 100px;
height: 100px;
position: absolute;
}
.auth_header {
text-align: left;
}
.login,
.reset {
height: 220px;
}
.forgot {
height: 175px;
}
.signup {
height: 273px;
}
.btn {
width: 224px;
height: 35px;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
font-style: oblique;
}
#overlay_signup,
#overlay_reset,
#overlay_workspaces {
height: 345px;
}
.workspace-header {
margin-left: 20px;
}
.select-workspace {
margin-top: 15px;
margin-left: 20px;
}
#overlay_workspaces {
overflow-y: scroll;
text-align: left;
}
.workspaceId {
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
margin-left: -20px;
cursor: grab;
padding-bottom: 15px;
}
.workspaceId:hover {
color: red;
}
#overlay_login {
height: 300px;
}
#overlay_forgot {
height: 250px;
}
#new_user,
#to_login {
right: 15px;
}
#new_user,
#to_login,
#forgot {
top: 15px;
width: 20px;
height: 20px;
position: absolute;
}
#forgot {
left: 15px;
}
.overlay {
border: 2px solid yellow;
text-align: center;
position: absolute;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 400px;
background-color: white;
border-radius: 8px;
box-shadow: 10px 10px 10px #00000099;
}
.inner {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 230px;
margin: auto;
}
.form-control {
width: 200px;
margin-bottom: 15px;
height: 30px;
outline: none;
padding-left: 10px;
padding-right: 10px;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
|