aboutsummaryrefslogtreecommitdiff
path: root/Main/wwwroot/css
diff options
context:
space:
mode:
authorAryadev Chavali <aryadevchavali1@gmail.com>2019-02-21 15:48:41 +0000
committerAryadev Chavali <aryadevchavali1@gmail.com>2019-02-21 15:48:41 +0000
commit0c1eafe2c8d55c76a9756d722ef8c6cce065cc10 (patch)
tree4e5231af5975db6543b008443545642eb9d19c55 /Main/wwwroot/css
parent450bcb83ee18e78941324657c0e471f8b5e6ffb4 (diff)
downloadnewsaggregator-0c1eafe2c8d55c76a9756d722ef8c6cce065cc10.tar.gz
newsaggregator-0c1eafe2c8d55c76a9756d722ef8c6cce065cc10.tar.bz2
newsaggregator-0c1eafe2c8d55c76a9756d722ef8c6cce065cc10.zip
Moved website frontend to wwwroot - a problem for another day
Diffstat (limited to 'Main/wwwroot/css')
-rw-r--r--Main/wwwroot/css/main.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/Main/wwwroot/css/main.css b/Main/wwwroot/css/main.css
new file mode 100644
index 0000000..ca052da
--- /dev/null
+++ b/Main/wwwroot/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