Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,76 +1,59 @@
|
|
| 1 |
-
*
|
| 2 |
-
box-sizing: border-box;
|
| 3 |
-
padding: 0;
|
| 4 |
-
margin: 0;
|
| 5 |
-
font-family: sans-serif;
|
| 6 |
-
}
|
| 7 |
|
| 8 |
-
html,
|
| 9 |
body {
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
}
|
| 16 |
|
| 17 |
-
|
| 18 |
-
#container {
|
| 19 |
display: flex;
|
| 20 |
flex-direction: column;
|
| 21 |
-
|
| 22 |
-
align-items: center;
|
| 23 |
}
|
| 24 |
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
height: 640px;
|
| 31 |
-
max-width: 100%;
|
| 32 |
-
max-height: 100%;
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
cursor: pointer;
|
| 38 |
-
margin: 1rem;
|
| 39 |
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
font-size: 18px;
|
| 44 |
}
|
| 45 |
|
| 46 |
-
#
|
| 47 |
-
display:
|
|
|
|
|
|
|
| 48 |
}
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|
| 52 |
}
|
| 53 |
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
|
|
|
|
|
|
|
|
|
| 57 |
cursor: pointer;
|
| 58 |
}
|
| 59 |
|
| 60 |
-
|
| 61 |
-
color: #
|
| 62 |
}
|
| 63 |
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
}
|
| 69 |
-
|
| 70 |
-
.bounding-box-label {
|
| 71 |
-
color: white;
|
| 72 |
-
position: absolute;
|
| 73 |
-
font-size: 12px;
|
| 74 |
-
margin: -16px 0 0 -2px;
|
| 75 |
-
padding: 1px;
|
| 76 |
-
}
|
|
|
|
| 1 |
+
/* styles.css */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
|
|
|
| 3 |
body {
|
| 4 |
+
font-family: Arial, sans-serif;
|
| 5 |
+
margin: 0;
|
| 6 |
+
padding: 0;
|
| 7 |
+
background-color: #282c34;
|
| 8 |
+
color: #61dafb;
|
| 9 |
}
|
| 10 |
|
| 11 |
+
.container {
|
|
|
|
| 12 |
display: flex;
|
| 13 |
flex-direction: column;
|
| 14 |
+
height: 100vh;
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
+
header {
|
| 18 |
+
background-color: #20232a;
|
| 19 |
+
padding: 10px;
|
| 20 |
+
text-align: center;
|
| 21 |
+
}
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
+
h1 {
|
| 24 |
+
margin: 0;
|
| 25 |
+
}
|
|
|
|
|
|
|
| 26 |
|
| 27 |
+
main {
|
| 28 |
+
flex: 1;
|
| 29 |
+
padding: 20px;
|
|
|
|
| 30 |
}
|
| 31 |
|
| 32 |
+
#dashboard {
|
| 33 |
+
display: flex;
|
| 34 |
+
flex-direction: column;
|
| 35 |
+
align-items: center;
|
| 36 |
}
|
| 37 |
|
| 38 |
+
#status {
|
| 39 |
+
margin-bottom: 20px;
|
| 40 |
}
|
| 41 |
|
| 42 |
+
button {
|
| 43 |
+
background-color: #61dafb;
|
| 44 |
+
border: none;
|
| 45 |
+
color: #20232a;
|
| 46 |
+
padding: 10px 20px;
|
| 47 |
+
font-size: 16px;
|
| 48 |
cursor: pointer;
|
| 49 |
}
|
| 50 |
|
| 51 |
+
button:hover {
|
| 52 |
+
background-color: #4fa3d8;
|
| 53 |
}
|
| 54 |
|
| 55 |
+
footer {
|
| 56 |
+
background-color: #20232a;
|
| 57 |
+
padding: 10px;
|
| 58 |
+
text-align: center;
|
| 59 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|