-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathui.css
More file actions
159 lines (149 loc) · 2.77 KB
/
Copy pathui.css
File metadata and controls
159 lines (149 loc) · 2.77 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
* {
/* margin: 0;
padding: 0; */
box-sizing: border-box;
/* Adding browser prefixes */
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
}
.mb-5{
margin-bottom: 1em;
}
/* Styling for pop up 1 */
a.button{
font-size: 13px;
padding: 5px 10px;
border: 1px solid #aaa;
background-color: #eee;
background-image: linear-gradient(top, #fff, #f0f0f0);
border-radius: 2px;
box-shadow: 0 1px 3px rgba(0,0,0,0.15);
color: #666;
text-decoration: none;
text-shadow: 0 1px 0 #fff;
cursor: pointer;
transition: all 0.2s ease-out;
}
.overlay{
position: absolute;
top:0;
right:0;
left:0;
bottom:0;
background: rgba(0, 0, 0, .6);
transition: opacity 200ms;
display: none;
opacity: 1;
}
.popup1{
width: 500px;
height: 200px;
background: white;
position: relative;
color: black;
margin: auto;
margin-top: 2em;
padding: 1em;
}
.popup1 a{
color: black;
}
.overlay2{
position: absolute;
top:0;
right:0;
left:0;
bottom:0;
background: rgba(166, 166, 166, 0.6);
display: flex;
transition: opacity 200ms;
visibility: hidden;
opacity: 1;
}
.popup2{
width: 300px;
height: 200px;
background: white;
position: relative;
color: black;
margin: auto;
padding: 1em;
}
.popup1 a{
color: black;
}
/* Styling for password Reset here */
body#p-body{
padding: 0;
margin: 0;
}
.p-header{
width: 100%;
min-height: 30px;
box-shadow: 0 0 3px #aaa;
border-bottom: 0 solid rgba(0,0,0,0.25);
padding: 10px;
}
.p-header nav{
margin: auto;
width: 50%;
display: flex;
justify-content: space-between;
align-content: flex-start;
}
.p-header nav.logo img{
border-radius: 50%;
}
.p-header nav .lang,.lang{
display: flex;
}
.p-header nav .lang span{
margin: auto;
}
.mr{
margin-right: .5em;
}
.reset-password{
height: 80vh;
width: 100%;
}
.reset-password form{
padding: 36px 0;
max-width: 450px;
margin: auto;
}
.reset-password form input{
display: block;
width: fit-content;
border-radius: 18px;
padding: 7px 15px 5px;
line-height: 20px;
border: 1px solid#ccd6dd;
outline: 0;
font-size: 16px;
margin: 5px 10px 5px 0;
}
.reset-password form input:focus{
outline: #0000FF;
}
.reset-password button.btn-primary{
border: none;
cursor: pointer;
color: white;
border-radius: 100px;
box-shadow: none;
cursor: pointer;
font-size: 14px;
font-weight: bold;
line-height: 20px;
padding: 6px 16px;
position: relative;
text-align: center;
white-space: nowrap;
margin-top: 20px;
background: #0000FF;
font-size: 15px;
}
/* End of Password reset styling */