dataautogpt3 commited on
Commit
a432893
·
verified ·
1 Parent(s): 6af1f8e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -6
README.md CHANGED
@@ -18,12 +18,14 @@ tags:
18
 
19
  ## Example Outputs
20
 
 
 
21
  <style>
22
  .gallery {
23
  display: flex;
24
  flex-direction: row;
25
  flex-wrap: wrap;
26
- gap: 10px; /* Reduced gap for smaller images */
27
  justify-content: center;
28
  align-items: center;
29
  width: 100%;
@@ -31,18 +33,26 @@ tags:
31
  }
32
 
33
  .gallery-item {
34
- flex: 0 0 300px; /* Reduced from 340px to 300px */
35
  margin: 0;
36
  position: relative;
37
  }
38
 
 
 
 
 
39
  .gallery img {
40
- width: 300px; /* Reduced from 340px to 300px */
41
  cursor: pointer;
42
  transition: transform 0.2s;
43
  border-radius: 8px;
44
  }
45
 
 
 
 
 
46
  .gallery img:hover {
47
  transform: scale(1.05);
48
  }
@@ -54,8 +64,8 @@ tags:
54
  right: 0;
55
  background: rgba(0, 0, 0, 0.4);
56
  color: white;
57
- padding: 8px; /* Slightly reduced padding */
58
- font-size: 11px; /* Slightly reduced font size */
59
  border-bottom-left-radius: 8px;
60
  border-bottom-right-radius: 8px;
61
  opacity: 0.7;
@@ -109,7 +119,7 @@ tags:
109
  <div class="gallery-item">
110
  <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example4.png" alt="Example Output 4" onclick="showImage(this.src)"/>
111
  </div>
112
- <div class="gallery-item">
113
  <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example5.png" alt="Example Output 5" onclick="showImage(this.src)"/>
114
  </div>
115
  </div>
 
18
 
19
  ## Example Outputs
20
 
21
+ ## Example Outputs
22
+
23
  <style>
24
  .gallery {
25
  display: flex;
26
  flex-direction: row;
27
  flex-wrap: wrap;
28
+ gap: 10px;
29
  justify-content: center;
30
  align-items: center;
31
  width: 100%;
 
33
  }
34
 
35
  .gallery-item {
36
+ flex: 0 0 300px;
37
  margin: 0;
38
  position: relative;
39
  }
40
 
41
+ .gallery-item.large { /* New class for larger item */
42
+ flex: 0 0 340px;
43
+ }
44
+
45
  .gallery img {
46
+ width: 300px;
47
  cursor: pointer;
48
  transition: transform 0.2s;
49
  border-radius: 8px;
50
  }
51
 
52
+ .gallery-item.large img { /* Larger size for last image */
53
+ width: 340px;
54
+ }
55
+
56
  .gallery img:hover {
57
  transform: scale(1.05);
58
  }
 
64
  right: 0;
65
  background: rgba(0, 0, 0, 0.4);
66
  color: white;
67
+ padding: 8px;
68
+ font-size: 11px;
69
  border-bottom-left-radius: 8px;
70
  border-bottom-right-radius: 8px;
71
  opacity: 0.7;
 
119
  <div class="gallery-item">
120
  <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example4.png" alt="Example Output 4" onclick="showImage(this.src)"/>
121
  </div>
122
+ <div class="gallery-item large"> <!-- Added 'large' class -->
123
  <img src="https://huggingface.co/dataautogpt3/ProteusSigma/resolve/main/example5.png" alt="Example Output 5" onclick="showImage(this.src)"/>
124
  </div>
125
  </div>