From a59a56707d52570a344d76ac0293ce3e56e5dace Mon Sep 17 00:00:00 2001 From: PrajapatiAnkit Date: Thu, 26 Oct 2017 14:45:31 +0530 Subject: [PATCH] merged CSS in to one main.css inside style folder --- style/main.css | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 style/main.css diff --git a/style/main.css b/style/main.css new file mode 100644 index 0000000..6eeede6 --- /dev/null +++ b/style/main.css @@ -0,0 +1,83 @@ +.header { + height: 40vh; + background: #212121; + color:white; + display: table; + width: 100%; +} + +.title { + display: table-cell; + vertical-align: middle; + text-align: center; + font-size: 150%; +} + +.hello { + color: #76FF03; +} + + +.container { + margin-top:50px; + display: table; + width: 100%; +} + +.message { + display: table-cell; + vertical-align: middle; + text-align: center; + font-size: 110%; +} + +.file { + padding:5px; + background: #EEEEEE; + border: 1px solid #9E9E9E; + border-radius: 10px; + font-family: consolas; +} + +/** 2nd CSS **/ + +body, html { + padding:0px; + margin:0px; + font-family: sans-serif; +} +.amber{ + color: #ffc107; +} + +.blue{ + color: #64b5f6; +} + +.deepOrange{ + color: #ff5722; +} + +.green{ + color: #4caf50; +} + +.grey{ + color: #eeeeee; +} + +.lime{ + color: #cddc39; +} +.pink{ + color: #e91e63; +} + +.yellow{ + color: #ffeb3b; +} + + + + +