Spaces:
Running
Running
Commit
·
2d74e25
1
Parent(s):
9e261c8
Enhanced text with background contrast
Browse filesAdded media query for the translate button to take all available space in smaller screens
style.css
CHANGED
|
@@ -11,7 +11,7 @@ body {
|
|
| 11 |
}
|
| 12 |
|
| 13 |
p {
|
| 14 |
-
color: rgb(
|
| 15 |
font-size: 15px;
|
| 16 |
margin-bottom: 10px;
|
| 17 |
margin-top: 5px;
|
|
@@ -106,6 +106,10 @@ a.button {
|
|
| 106 |
margin: 0.25rem;
|
| 107 |
}
|
| 108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
.card-description-flex-container {
|
| 110 |
display: flex;
|
| 111 |
flex-direction: row;
|
|
@@ -239,4 +243,12 @@ button#translate > img {
|
|
| 239 |
.buttons-flex-container .button.manual:hover {
|
| 240 |
background-position: left bottom;
|
| 241 |
color: white;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 242 |
}
|
|
|
|
| 11 |
}
|
| 12 |
|
| 13 |
p {
|
| 14 |
+
color: rgb(24, 24, 24);
|
| 15 |
font-size: 15px;
|
| 16 |
margin-bottom: 10px;
|
| 17 |
margin-top: 5px;
|
|
|
|
| 106 |
margin: 0.25rem;
|
| 107 |
}
|
| 108 |
|
| 109 |
+
.card p {
|
| 110 |
+
color: rgb(92, 93, 97);
|
| 111 |
+
}
|
| 112 |
+
|
| 113 |
.card-description-flex-container {
|
| 114 |
display: flex;
|
| 115 |
flex-direction: row;
|
|
|
|
| 243 |
.buttons-flex-container .button.manual:hover {
|
| 244 |
background-position: left bottom;
|
| 245 |
color: white;
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
/* Media queries */
|
| 249 |
+
|
| 250 |
+
@media only screen and (max-width: 769px) {
|
| 251 |
+
button#translate {
|
| 252 |
+
width: 100%;
|
| 253 |
+
}
|
| 254 |
}
|