-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (60 loc) · 1.1 KB
/
style.css
File metadata and controls
64 lines (60 loc) · 1.1 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
/*color scheme: https://coolors.co/app/02111b-3f4045-30292f-5d737e-e0e0e0 */
html {
margin: 0;
padding: 0;
}
body {
padding: 10px 30px;
margin: 0;
font-family: sans-serif;
background-color: #FFF;
}
h1 {
text-align: center;
}
div#files {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
}
div.file {
display: inline-block;
margin: 15px 10px;
padding: 10px;
width: 300px;
border-radius: 3px;
background-color: #02111B;
box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}
.file > .name {
color: #FFF;
}
.file > .size, .file > .type, .file > .date {
display: block;
padding: 3px;
background-color: #E0E0E0;
border-radius: 2px;
margin: 5px 0;
}
.file > .size, .file > .type {
font-size: 12px;
}
.file > .date {
font-size: 8.5px;
}
span#basicInfo {
display: block;
margin-top: 10px;
}
div.upload {
background-color: #30292F;
display: block;
width: 300px;
margin: 5px auto;
padding: 10px;
color: #FFF;
border-radius: 3px;
text-align: center;
font-size: 12px;
}