-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathencrypt.css
More file actions
61 lines (53 loc) · 893 Bytes
/
encrypt.css
File metadata and controls
61 lines (53 loc) · 893 Bytes
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
html,
body {
height: 100%;
overflow: hidden;
}
body {
margin: 0;
padding: 0;
}
body {
background: #f3f5f6;
text-align: center;
color: #1C90F3;
}
h3 {
color: #666;
}
#box {
width: 300px;
height: 300px;
display: inline-block;
background: white;
transition: all .3s;
margin-top: 80px;
overflow: auto;
text-align: left;
padding: 10px 0;
box-sizing: border-box;
}
#box.entered {
box-shadow: inset 0 0 10px #aaa;
}
#box .words {
padding: 0 10px;
font-size: 14px;
color: #777
}
#box .file-name {
color: #777;
font-size: 14px;
line-height: 1.8;
max-width: 300px;
padding: 0 10px;
box-sizing: border-box;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#box .file-name:before {
content: '\1F4CE';
display: inline-block;
margin-right: 5px;
}