possible readme fix
Browse files
README.md
CHANGED
@@ -11,13 +11,11 @@ inference: true
|
|
11 |
---
|
12 |
|
13 |
<style>
|
14 |
-
|
15 |
-
h1.artisan-title {
|
16 |
font-family: Arial, sans-serif;
|
17 |
font-size: 3em;
|
18 |
text-align: center;
|
19 |
-
color: #
|
20 |
-
background-color: #000;
|
21 |
text-transform: uppercase;
|
22 |
letter-spacing: 0.1em;
|
23 |
padding: 0.5em 0;
|
@@ -25,22 +23,19 @@ inference: true
|
|
25 |
}
|
26 |
|
27 |
.image-grid {
|
28 |
-
display:
|
29 |
-
|
30 |
-
grid-template-rows: repeat(2, 1fr) auto;
|
31 |
-
gap: 0;
|
32 |
-
background-color: #000;
|
33 |
margin-bottom: 20px;
|
34 |
}
|
35 |
|
36 |
.image-grid img {
|
37 |
-
width:
|
38 |
height: auto;
|
39 |
display: block;
|
40 |
}
|
41 |
|
42 |
.image-grid .wide-image {
|
43 |
-
|
44 |
}
|
45 |
</style>
|
46 |
|
|
|
11 |
---
|
12 |
|
13 |
<style>
|
14 |
+
.artisan-title {
|
|
|
15 |
font-family: Arial, sans-serif;
|
16 |
font-size: 3em;
|
17 |
text-align: center;
|
18 |
+
color: #000;
|
|
|
19 |
text-transform: uppercase;
|
20 |
letter-spacing: 0.1em;
|
21 |
padding: 0.5em 0;
|
|
|
23 |
}
|
24 |
|
25 |
.image-grid {
|
26 |
+
display: flex;
|
27 |
+
flex-wrap: wrap;
|
|
|
|
|
|
|
28 |
margin-bottom: 20px;
|
29 |
}
|
30 |
|
31 |
.image-grid img {
|
32 |
+
width: 50%;
|
33 |
height: auto;
|
34 |
display: block;
|
35 |
}
|
36 |
|
37 |
.image-grid .wide-image {
|
38 |
+
width: 100%;
|
39 |
}
|
40 |
</style>
|
41 |
|