-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (103 loc) · 2.69 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (103 loc) · 2.69 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
body, html {
background-color: #333;
color: #ccc;
font-family: 'Maven Pro';
font-size: 13px;
line-height: 12px;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
input {
font-family: 'Maven Pro';
background-color: #222;
color: #ddd;
padding: 4px;
margin: 2px;
border: 1px solid #555;
box-shadow: 0 1px 4px rgba(0,0,0,0);
-webkit-transition: border 0.3s, color 0.3s, background-color 0.3s, box-shadow 0.3s;
-moz-transition: border 0.3s, color 0.3s, background-color 0.3s, box-shadow 0.3s;
transition: border 0.3s, color 0.3s, background-color 0.3s, box-shadow 0.3s;
box-sizing: content-box;
}
input:hover, input:focus {
background-color: #444;
color: #fff;
border: 1px solid #777;
box-shadow: 0 1px 4px rgba(0,0,0,0.4);
outline: none;
}
ul, li {
list-style: none;
margin: 0;
padding: 0;
}
.login-box {
width: 128px;
height: 64px;
position: absolute;
left: 50%;
top: 50%;
margin: -38px -72px;
border-radius: 10px;
padding: 8px;
box-shadow: 0 1px 16px rgba(0,0,0,0.3);
opacity: 1;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.login-box > input {
text-align: center;
width: 114px;
height: 18px;
}
.display-group {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: none;
opacity: 0;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
transition: opacity 0.3s;
}
.button {
cursor: pointer;
color: #fff;
padding: 8px;
margin: 4px;
display: inline-block;
border: 1px solid #666;
background-color: #222;
background-image: radial-gradient(50% 20%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
background-image: -moz-radial-gradient(50% 20%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
background-image: -webkit-radial-gradient(50% 20%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
box-shadow: 0 1px 3px rgba(0,0,0,0.3), 0 0 12px rgba(51,85,155,0), 0 -1px 2px rgba(0,0,0,0.4) inset;
position: relative;
border-radius: 2px;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-transition: background-color 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s, top 0.3s;
-moz-transition: background-color 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s, top 0.3s;
transition: background-color 0.3s, color 0.3s, border 0.3s, box-shadow 0.3s, top 0.3s;
}
.button:hover {
color: #fff;
background-color: #555;
border: 1px solid #fff;
box-shadow: 0 1px 5px rgba(0,0,0,1), 0 0 12px rgba(51,85,155,1), 0 -1px 2px rgba(0,0,0,0.4) inset;
}
.button:active {
top: 3px;
background-color: #333;
box-shadow: 0 1px 3px rgba(0,0,0,0.6), 0 0 4px rgba(51,85,155,1), 0 -1px 2px rgba(0,0,0,0.4) inset;
}