diff options
author | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-21 23:02:23 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadevchavali1@gmail.com> | 2019-02-21 23:02:23 +0000 |
commit | c11f55ca5d3eca5e75aabaee7c352596bc2f2a9d (patch) | |
tree | 071bc3dc0145bd8a0efbcb9df87968dc0724e2dc /Main/wwwroot/css/main.css | |
parent | 59abc62c0727f4dee89c7251075263482fd2aa93 (diff) | |
download | newsaggregator-c11f55ca5d3eca5e75aabaee7c352596bc2f2a9d.tar.gz newsaggregator-c11f55ca5d3eca5e75aabaee7c352596bc2f2a9d.tar.bz2 newsaggregator-c11f55ca5d3eca5e75aabaee7c352596bc2f2a9d.zip |
Moved back frontend to wwwroot for simplicity
Diffstat (limited to 'Main/wwwroot/css/main.css')
-rw-r--r-- | Main/wwwroot/css/main.css | 32 |
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 |