Selaa lähdekoodia

Create the first feature

DricomDragon 5 vuotta sitten
vanhempi
commit
92600dcfe9
3 muutettua tiedostoa jossa 23 lisäystä ja 0 poistoa
  1. 14 0
      web/custom.css
  2. BIN
      web/img/city.png
  3. 9 0
      web/index.html

+ 14 - 0
web/custom.css

@@ -11,3 +11,17 @@ p {
 	text-align: center;
 	font-size: 20px;
 }
+
+.feature {
+	display: flex;
+	margin: 16px 0;
+}
+
+.feature-img {
+	width: 128px;
+	height: 128px;
+}
+
+.feature-content {
+	flex: 1;
+}

BIN
web/img/city.png


+ 9 - 0
web/index.html

@@ -18,5 +18,14 @@
 		<p>Welcome to the Jovian Platform Center.</p>
 		<p>Here you can find several links to tools hosted by Jovian.</p>
 		<p>Website in progress ...</p>
+		<div class="feature">
+			<div class="feature-img">
+				<img src="img/city.png" alt="Folio website logo">
+			</div>
+			<div class="feature-content">
+				<h2>Feature 1</h2>
+				<p>Some bla bla ...</p>
+			</div>
+		</div>
 	</body>
 </html>