-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
68 lines (57 loc) · 1004 Bytes
/
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
/* google font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;800&family=VT323&display=swap");
/* layout */
body {
background: #f1f1f1;
margin: 0;
font-family: "Poppins", sans-serif;
}
header {
background: #343a40;
}
header .container {
max-width: 1000px;
margin: 0 auto;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
header a {
color: #333;
text-decoration: none;
}
div.button {
margin: 10px;
text-align: center;
width: 150px;
background: #424a52;
border: 0;
color: #fff;
padding: 10px;
font-family: "Poppins", sans-serif;
border-radius: 4px;
cursor: pointer;
}
div.button.active {
background: #39b2ab;
}
a:hover div.button {
background: #43cec6;
}
.button p {
margin: 0;
}
.page {
padding: 20px;
margin: 0 auto;
max-width: 1000px;
}
#file-drop-area {
background: #1aac83;
border: 2px dashed black;
padding: 20px;
}
#myDiv {
margin-top: 20px;
}