From c11f55ca5d3eca5e75aabaee7c352596bc2f2a9d Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 21 Feb 2019 23:02:23 +0000 Subject: Moved back frontend to wwwroot for simplicity --- Main/wwwroot/css/main.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Main/wwwroot/css/main.css (limited to 'Main/wwwroot/css/main.css') 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 -- cgit v1.2.3-13-gbd6f