Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,38 +1,24 @@
|
|
| 1 |
-
|
| 2 |
-
font-family: Arial, sans-serif;
|
| 3 |
-
background-color: #000;
|
| 4 |
-
color: #fff;
|
| 5 |
display: flex;
|
| 6 |
justify-content: center;
|
| 7 |
align-items: center;
|
| 8 |
height: 100vh;
|
| 9 |
-
|
| 10 |
}
|
| 11 |
|
| 12 |
-
.
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
}
|
| 15 |
|
| 16 |
-
.
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
| 19 |
}
|
| 20 |
|
| 21 |
-
.
|
| 22 |
-
font-size: 1.2em;
|
| 23 |
-
}
|
| 24 |
-
|
| 25 |
-
.jarvis button {
|
| 26 |
-
margin-top: 20px;
|
| 27 |
-
padding: 10px 20px;
|
| 28 |
-
font-size: 1em;
|
| 29 |
-
background-color: #007BFF;
|
| 30 |
-
color: #fff;
|
| 31 |
-
border: none;
|
| 32 |
-
border-radius: 5px;
|
| 33 |
-
cursor: pointer;
|
| 34 |
-
}
|
| 35 |
-
|
| 36 |
-
.jarvis button:hover {
|
| 37 |
-
background-color: #0056b3;
|
| 38 |
-
}
|
|
|
|
| 1 |
+
.container {
|
|
|
|
|
|
|
|
|
|
| 2 |
display: flex;
|
| 3 |
justify-content: center;
|
| 4 |
align-items: center;
|
| 5 |
height: 100vh;
|
| 6 |
+
background-color: #222;
|
| 7 |
}
|
| 8 |
|
| 9 |
+
.circle {
|
| 10 |
+
width: 300px;
|
| 11 |
+
height: 300px;
|
| 12 |
+
border-radius: 50%;
|
| 13 |
+
border: 10px solid #00ffff;
|
| 14 |
+
position: relative;
|
| 15 |
}
|
| 16 |
|
| 17 |
+
.hexagon {
|
| 18 |
+
width: 50px;
|
| 19 |
+
height: 28.87px;
|
| 20 |
+
background-color: #333;
|
| 21 |
+
position: absolute;
|
| 22 |
}
|
| 23 |
|
| 24 |
+
/* ... outros estilos para os hexágonos ... */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|