aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/css/style.css
diff options
context:
space:
mode:
authorJohannes Zellner <johannes@nebulon.de>2016-03-01 22:12:58 +0100
committerJohannes Zellner <johannes@nebulon.de>2016-03-01 22:12:58 +0100
commite807872bc4ebe09bf8f44033395e395bc26c0e5e (patch)
tree2224588d232149a4b76fc000d37d2c49cd87e69c /app/css/style.css
parent8db95047eb992b3d4799a626a47baf19bb6b3dae (diff)
downloadSurfer-e807872bc4ebe09bf8f44033395e395bc26c0e5e.tar.gz
Surfer-e807872bc4ebe09bf8f44033395e395bc26c0e5e.tar.zst
Surfer-e807872bc4ebe09bf8f44033395e395bc26c0e5e.zip
Add basic footer
Diffstat (limited to 'app/css/style.css')
-rw-r--r--app/css/style.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/css/style.css b/app/css/style.css
index 13c6533..26eada0 100644
--- a/app/css/style.css
+++ b/app/css/style.css
@@ -1,11 +1,16 @@
1 1
2html, body { 2html, body {
3 min-height: 100%;
3 width: 100%; 4 width: 100%;
4 height: 100%; 5 height: 100%;
5 padding: 0; 6 padding: 0;
6 margin: 0; 7 margin: 0;
7} 8}
8 9
10body {
11 padding-bottom: 70px;
12}
13
9.wrapper { 14.wrapper {
10 display: table; 15 display: table;
11 width: 100%; 16 width: 100%;
@@ -36,4 +41,26 @@ pre {
36 41
37th { 42th {
38 vertical-align: middle !important; 43 vertical-align: middle !important;
44}
45
46.main {
47 margin-bottom: 40px;
48}
49
50footer {
51 position: fixed;
52 background-color: #efefef;
53 bottom: 0;
54 width: 100%;
55 color: #555;
56 font-size: 14px;
57 padding: 5px;
58 z-index: 13;
59 opacity: .5;
60 -webkit-transition: all .25s;
61 transition: all .25s;
62}
63
64footer:hover {
65 opacity: 1;
39} \ No newline at end of file 66} \ No newline at end of file