From 95e5eb9f0fa59001bc6ffd2baa4ddfd861e40122 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Sun, 5 Feb 2017 06:14:47 -0800 Subject: Rename app/ to frontend/ --- frontend/css/style.css | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 frontend/css/style.css (limited to 'frontend/css/style.css') diff --git a/frontend/css/style.css b/frontend/css/style.css new file mode 100644 index 0000000..05336ab --- /dev/null +++ b/frontend/css/style.css @@ -0,0 +1,66 @@ + +html, body { + min-height: 100%; + width: 100%; + height: 100%; + padding: 0; + margin: 0; +} + +body { + padding-bottom: 70px; +} + +.wrapper { + display: table; + width: 100%; + height: 100%; +} + +.content { + display: table-cell; + width: 100%; + height: 100%; + text-align: center; + vertical-align: middle; +} + +pre { + margin: auto; + text-align: left; + width: 400px; +} + +[v-cloak] { + display: none; +} + +.hand { + cursor: pointer; +} + +th { + vertical-align: middle !important; +} + +.main { + margin-bottom: 40px; +} + +footer { + position: fixed; + background-color: #efefef; + bottom: 0; + width: 100%; + color: #555; + font-size: 14px; + padding: 5px; + z-index: 13; + opacity: .5; + -webkit-transition: all .25s; + transition: all .25s; +} + +footer:hover { + opacity: 1; +} \ No newline at end of file -- cgit v1.2.3