-
Notifications
You must be signed in to change notification settings - Fork 0
/
logon.css
176 lines (175 loc) · 3.23 KB
/
logon.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
@font-face {
font-family: Ubuntu;
src: url('../fonts/Ubuntu.ttf');
}
body {
background-color: white;
font-family: Ubuntu;
text-align:center;
transition: all .1s linear;
overflow-y: hidden;
overflow-x: hidden;
}
h1{
text-align: center;
}
.blur{
background-color: rgba(255,255,255);
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter:alpha(opacity=50);
opacity: 0.5;
-moz-opacity:0.50;
transition: all .1s linear;
}
#profile
{
width: 100%;
background-color: white;
height: 20%;
text-align: left;
border: 1px solid skyblue;
border-weight: 20;
}
#it
{
margin-top: 5px;
float: left;
border: 1px solid skyblue;
}
.menu
{
margin-left: 20px;
margin-top: 35px;
padding: 10px;
border-radius: 2px;
border : 3px solid skyblue;
transform: translateY(0px);
}
.view
{
width: 100%;
background-color: lightgray;
padding : 20px;
margin-top: -10px;
}
.content
{
background-color: white;
margin-top: 10px;
display: none;
}
button{
font-size: 18px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: black;
background-color: white;
border-radius: 30px 30px 30px;
}
button[id = 'login']{
font-size: 18px;
padding: 30px 70px 30px 70px;
position: center;
cursor: pointer;
text-align: center;
color: black;
background-color: white;
border: 1px solid silver;
border-radius: 30px 30px 30px;
transition: all .3s linear;
}
button:hover{
background-color: white;
box-shadow: 2px 5px 10px skyblue;
transition: all .3s linear;
color: orange;
border: none;
}
div{
text-shadow: 5px 5px 20px skyblue;
text-align: center;
margin: auto;
background-color: white;
box-shadow: 1px 1px 2px skyblue;
width: 100%;
height: 100%;
}
input[type = 'password']
{
margin-top : 10px;
margin-left: center;
box-sizing: border-box;
border: 1px solid silver;
border-radius: 2px 2px 2px 2px;
height: 30px;
}
input[type = 'text']
{
margin-top : 10px;
margin-left: center;
box-sizing: border-box;
border: 1px solid silver;
height: 30px;
border-radius: 2px 2px 2px 2px;
}
input[type = 'submit']
{
margin-top : 10px;
margin-left: center;
box-sizing: border-box;
height: 30px;
width: 160px;
border-radius: 10px 10px 10px 10px;
background-color: skyblue;
outline: none;
border: none;
color: orange;
}
input[type = 'submit']:hover{
box-shadow: 2px 5px 10px skyblue;
transition: all .3s linear;
color: orange;
border: none;
}
input[type = 'submit']:active{
transform: translateY(4px);
box-shadow: 0px 5px 20px red;
}
div[id='errMsg']
{
height: 50px;
width : 400px;
color: red;
margin: auto;
}
div[id='logonScreen']
{
height: 430px;
width : 600px;
color: skyblue;
position: fixed;
top: 80px;
left: 35%;
}
span{
float: right;
margin-right: 10px;
margin-top: 10px;
}
span:hover{
color: red;
cursor: pointer;
}
div[id='logonScreen']
{
display: none;
}
hr{
border: 0.2px solid silver;
}