aboutsummaryrefslogtreecommitdiff
path: root/Website
diff options
context:
space:
mode:
Diffstat (limited to 'Website')
-rw-r--r--Website/css/main.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/Website/css/main.css b/Website/css/main.css
index e69de29..ca052da 100644
--- a/Website/css/main.css
+++ b/Website/css/main.css
@@ -0,0 +1,32 @@
+* {
+ --size: 20em;
+ /*Image size*/
+}
+
+#root {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ grid-template-rows: repeat(20, 1fr);
+ grid-gap: 2em;
+}
+
+.Frame {
+ outline: grey 0.5em auto;
+}
+
+.Frame h1 {
+ display: inline;
+ align-content: center;
+ font-family: 'Poppins', sans-serif;
+}
+
+.Frame a:link,
+.Frame a:visited {
+ color: black;
+}
+
+.Frame img {
+ display: block;
+ background-size: cover;
+ width: 38em;
+} \ No newline at end of file