Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,59 +1,38 @@
|
|
| 1 |
-
/* styles.css */
|
| 2 |
-
|
| 3 |
body {
|
| 4 |
font-family: Arial, sans-serif;
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
background-color: #282c34;
|
| 8 |
-
color: #61dafb;
|
| 9 |
-
}
|
| 10 |
-
|
| 11 |
-
.container {
|
| 12 |
display: flex;
|
| 13 |
-
|
|
|
|
| 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 |
-
|
| 28 |
-
|
| 29 |
-
padding: 20px;
|
| 30 |
}
|
| 31 |
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
align-items: center;
|
| 36 |
}
|
| 37 |
|
| 38 |
-
|
| 39 |
-
|
| 40 |
}
|
| 41 |
|
| 42 |
-
button {
|
| 43 |
-
|
| 44 |
-
border: none;
|
| 45 |
-
color: #20232a;
|
| 46 |
padding: 10px 20px;
|
| 47 |
-
font-size:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
cursor: pointer;
|
| 49 |
}
|
| 50 |
|
| 51 |
-
button:hover {
|
| 52 |
-
background-color: #
|
| 53 |
-
}
|
| 54 |
-
|
| 55 |
-
footer {
|
| 56 |
-
background-color: #20232a;
|
| 57 |
-
padding: 10px;
|
| 58 |
-
text-align: center;
|
| 59 |
-
}
|
|
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 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 |
margin: 0;
|
| 10 |
}
|
| 11 |
|
| 12 |
+
.jarvis {
|
| 13 |
+
text-align: center;
|
|
|
|
| 14 |
}
|
| 15 |
|
| 16 |
+
.jarvis h1 {
|
| 17 |
+
font-size: 2em;
|
| 18 |
+
margin-bottom: 20px;
|
|
|
|
| 19 |
}
|
| 20 |
|
| 21 |
+
.jarvis p {
|
| 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 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|