EvkoGS commited on
Commit
8ce4c92
·
1 Parent(s): fcc714c

possible readme fix

Browse files
Files changed (1) hide show
  1. README.md +15 -24
README.md CHANGED
@@ -11,39 +11,32 @@ inference: true
11
  ---
12
 
13
  <style>
14
- @import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
15
-
16
- .title-container {
17
- display: flex;
18
- justify-content: center;
19
- align-items: center;
20
- height: 20vh;
21
- background-color: #000;
22
- }
23
-
24
- .title {
25
- font-family: 'Lora', sans-serif;
26
- font-size: 4em;
27
  text-align: center;
28
  color: #fff;
 
29
  text-transform: uppercase;
30
  letter-spacing: 0.1em;
31
  padding: 0.5em 0;
 
32
  }
33
 
34
- .image-grid {
35
  display: grid;
36
- grid-template-columns: 1fr 1fr;
37
- grid-template-rows: 1fr 1fr auto;
38
- gap: 0; /* Removed gap to eliminate space between images */
39
- background-color: #000; /* Changed to black background */
 
40
  }
41
 
42
  .image-grid img {
43
  width: 100%;
44
- height: 100%;
45
- object-fit: cover;
46
- display: block; /* Ensures no extra space around images */
47
  }
48
 
49
  .image-grid .wide-image {
@@ -51,9 +44,7 @@ inference: true
51
  }
52
  </style>
53
 
54
- <div class="title-container">
55
- <h1 class="title">Artisan XL</h1>
56
- </div>
57
 
58
  <div class="image-grid">
59
  <img src="images/Picasso.webp" alt="Square image 1">
 
11
  ---
12
 
13
  <style>
14
+ /* Custom styles for ArtisanXL */
15
+ h1.artisan-title {
16
+ font-family: Arial, sans-serif;
17
+ font-size: 3em;
 
 
 
 
 
 
 
 
 
18
  text-align: center;
19
  color: #fff;
20
+ background-color: #000;
21
  text-transform: uppercase;
22
  letter-spacing: 0.1em;
23
  padding: 0.5em 0;
24
+ margin: 0;
25
  }
26
 
27
+ .image-grid {
28
  display: grid;
29
+ grid-template-columns: repeat(2, 1fr);
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: 100%;
38
+ height: auto;
39
+ display: block;
 
40
  }
41
 
42
  .image-grid .wide-image {
 
44
  }
45
  </style>
46
 
47
+ <h1 class="artisan-title">ArtisanXL</h1>
 
 
48
 
49
  <div class="image-grid">
50
  <img src="images/Picasso.webp" alt="Square image 1">