forked from jlubbers08/IPFS-UX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
77 lines (69 loc) · 1.54 KB
/
styles.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
#cover {
background: #0006;
display:none;
position: absolute;
height: 100%;
width: 100%;
top: 0;
}
#spinner{
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid #3498db; /* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#messageBox{
position: absolute;
min-width:100%;
}
#loadingMessage {
position: absolute;
background: #d6d6d6;
text-align: center;
padding: 9px;
font-size: 2em;
font-weight: bold;
margin-top: 12px;
border-radius: 10px;
}
.navbar-dark .navbar-toggler {
color: rgba(255, 255, 255, 1);
border-color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, 1);
}
.list-group > li, table > tbody > tr > td{
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -webkit-pre-wrap; /*Chrome & Safari */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* css-3 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
}
ul.list-group > li:nth-child(odd){
background-color:rgba(0,0,0,0.05);
}
.date{
width:20%
}
.link{
width:55%;
}
.fileName{
width:25%
}
.check{
display:none;
}
.check, table td, .table th, .material-icons{
vertical-align: middle !important;
}