-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleInitial.css
executable file
·109 lines (103 loc) · 2.25 KB
/
styleInitial.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
.job-list {
overflow: scroll;
width: 300px;
height: 150px;
padding: 5px;
border: solid 1px black;
}
.friend-list {
overflow: scroll;
width: 300px;
height: 150px;
padding: 5px;
border: solid 1px black;
}
.friend-controlers {
display: none;
}
.friend:hover .friend-controlers {
display: block;
}
.create {
color: green;
background: grey
}
.logout {
top: 50px;
position: absolute;
width: 100px;
height: 30px;
margin-left: 90%;
background: red;
}
.cabinet-controls {
top: 50px;
margin-left: 50%;
position: absolute;
}
.cabinet-btn {
width: 100px;
}
.cabinet-btn:hover {
background: linear-gradient(to right, slategrey, blueviolet);
}
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
html {
width: 100%;
height: 100%;
overflow: hidden;
}
.login {
position: absolute;
top: 50%;
left: 50%;
margin: -150px 0 0 -150px;
width: 300px;
height: 300px;
}
.login h1 {
color: #fff;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
letter-spacing: 1px;
text-align: center;
}
.loading-absolute {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
input {
width: 100%;
margin-bottom: 10px;
background: rgba(0, 0, 0, 0.3);
border: none;
outline: none;
padding: 10px;
font-size: 13px;
color: #fff;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(0, 0, 0, 0.3);
border-radius: 4px;
box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2), 0 1px 1px rgba(255, 255, 255, 0.2);
-webkit-transition: box-shadow .5s ease;
-moz-transition: box-shadow .5s ease;
-o-transition: box-shadow .5s ease;
-ms-transition: box-shadow .5s ease;
transition: box-shadow .5s ease;
}
input:focus {
box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.4), 0 1px 1px rgba(255, 255, 255, 0.2);
}