-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (100 loc) · 1.89 KB
/
style.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
110
111
112
113
114
115
116
117
118
119
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
/*
main.html styling start
*/
html {
margin: 0;
padding: 0;
height: 25rem;
width: 18.75rem;
background-color: #ececec;
font-family: 'Roboto', sans-serif !important;
}
body {
flex-direction: column;
order: 4;
margin: 0;
padding: 0;
}
.bi-file-earmark-arrow-up {
font-size: 5.625rem;
color: #385170;
}
.bottom {
position: absolute;
bottom: 0;
left: 0;
background-color: #142d4c;
width: 100%;
}
.drop-area {
display: flex;
justify-content: center;
align-items: center;
border: dashed 4px gray;
margin: 1em;
width: 16.875rem;
height: 12.500rem;
flex-direction: column;
order: 2;
}
.green-border {
border: dashed 4px green;
background-color: #eeffbe;
}
h3 {
margin-top: 0;
text-align: center;
}
.upload_bottom {
display: inline-block;
color: #fff;
background: #385170;
border: none;
width: 16.875rem;
height: 2.1875rem;
margin: 0 1rem 1rem 1rem;
border-radius: .25rem;
border-bottom: .25rem solid #142d4c;
transition: all .2s ease;
outline: none;
text-align: center;
font-size: 1.25rem;
}
.upload_bottom:hover {
background: green;
border-bottom: .25rem solid green;
color: #eeffbe;
}
.upload_bottom:active {
border: 0;
}
.button-wrap {
position: relative;
}
/* Don't remove below. It hides the choose file button behind the upload button */
input[type="file"] {
position: absolute;
z-index: -1;
top: 0.3125rem;
left: 1.25rem;
}
body div h2 {
text-align: center;
}
div:nth-of-type(2) {
text-align: center;
}
div:nth-of-type(2) label {
font-size: 1.17em;
}
div:nth-of-type(2) input {
margin-bottom: 1rem;
}
div h2 {
padding-bottom: 3px;
border-bottom: 2px solid darkgray;
}
/*
main.html styling end
*/