From e604b07c6ed15ce2f871f127f1f61061d6acef3a Mon Sep 17 00:00:00 2001 From: AmarOk1412 Date: Fri, 17 Apr 2015 11:31:39 +0200 Subject: [PATCH] css --- day.html | 3 +- event.css | 32 +++++++++++++++++++++ event.html | 3 +- index.css | 82 ------------------------------------------------------ index.html | 1 + main.css | 45 ++++++++++++++++++++++++++++++ 6 files changed, 82 insertions(+), 84 deletions(-) create mode 100644 event.css create mode 100644 main.css diff --git a/day.html b/day.html index 8173f3a..63de5cc 100644 --- a/day.html +++ b/day.html @@ -3,7 +3,8 @@ Kiwi Calendar - + + diff --git a/event.css b/event.css new file mode 100644 index 0000000..ade036c --- /dev/null +++ b/event.css @@ -0,0 +1,32 @@ +body +{ + padding:0px; +} + +#descEvent +{ + margin-top: 150px; + width:80%; + margin-right:auto; + margin-left:auto; + margin-bottom:70px; +} + +#descEvent h1 +{ + text-align:center; +} + +#descEvent #description +{ + width:60%; + text-align:justify; +} + +#descEvent #image +{ + float:right; + width:20%; + margin-right:100px; + margin-bottom:-100px; +} diff --git a/event.html b/event.html index 180d48c..f5dd91e 100644 --- a/event.html +++ b/event.html @@ -3,7 +3,8 @@ Kiwi Calendar - + + diff --git a/index.css b/index.css index f00d02e..9727802 100644 --- a/index.css +++ b/index.css @@ -4,36 +4,6 @@ body overflow:hidden; } -#title -{ - position: fixed; - top: 0px; - left: 0px; - width: 100%; - height: 70px; - margin: 0px; - background-color: #2b2b2b; - z-index: 100; -} - -a -{ - color:#5fd0f1; - text-decoration:none; -} - -#title img -{ - padding-top:10px; - height: 50px; -} - -#title .rightLogo -{ - float:right; - margin-right:25px; -} - nav { position: fixed; @@ -252,55 +222,3 @@ tr #date margin-left:10px; font-size:12px; } - - - - - - - -@media only screen and (max-width: 1000px) and (max-height: 500px){ - -#title -{ - height: 50px; -} - -#title img -{ - padding-top:10px; - height: 30px; -} - -} - - - -/*PAGE EVENEMENT*/ -#descEvent -{ - margin-top: 150px; - width:80%; - margin-right:auto; - margin-left:auto; - margin-bottom:70px; -} - -#descEvent h1 -{ - text-align:center; -} - -#descEvent #description -{ - width:60%; - text-align:justify; -} - -#descEvent #image -{ - float:right; - width:20%; - margin-right:100px; - margin-bottom:-100px; -} diff --git a/index.html b/index.html index d2ed9e3..9113d00 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@ Kiwi Calendar + diff --git a/main.css b/main.css new file mode 100644 index 0000000..ef19a6e --- /dev/null +++ b/main.css @@ -0,0 +1,45 @@ +#title +{ + position: fixed; + top: 0px; + left: 0px; + width: 100%; + height: 70px; + margin: 0px; + background-color: #2b2b2b; + z-index: 100; +} + +a +{ + color:#5fd0f1; + text-decoration:none; +} + +#title img +{ + padding-top:10px; + height: 50px; +} + +#title .rightLogo +{ + float:right; + margin-right:25px; +} + + +@media only screen and (max-width: 1000px) and (max-height: 500px){ + +#title +{ + height: 50px; +} + +#title img +{ + padding-top:10px; + height: 30px; +} + +}