summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorroot <root@Mystic.cogarr.org>2015-12-28 19:05:45 -0500
committerroot <root@Mystic.cogarr.org>2015-12-28 19:05:45 -0500
commit5daf01bb88978f0700f88100a7a36358d8cd583f (patch)
tree958b8db9443e34b427f1fd55e0e310a7036145e8 /style.css
downloadwebpage-5daf01bb88978f0700f88100a7a36358d8cd583f.tar.gz
webpage-5daf01bb88978f0700f88100a7a36358d8cd583f.tar.bz2
webpage-5daf01bb88978f0700f88100a7a36358d8cd583f.zip
Inital commit
Diffstat (limited to 'style.css')
-rw-r--r--style.css83
1 files changed, 83 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..622c0ef
--- /dev/null
+++ b/style.css
@@ -0,0 +1,83 @@
+a{
+ text-decoration:none;
+ color:darkgrey;
+ font-weight:bold;
+}
+
+footer>*{
+ font-size:small;
+ background-color:white;
+}
+
+img{
+ vertical-align:sub;
+ margin-left:auto;
+}
+
+h1{
+ height:32px;
+ font-size:32px;
+ text-align:center;
+}
+
+a:hover::after{
+ content:">";
+}
+a::after,a::before{
+ font-weight:normal;
+ color:black;
+}
+a::after{
+ content:"]";
+}
+a::before{
+ content:"[";
+}
+div{
+ float:left;
+ margin-left:10%;
+ margin-right:10%;
+ width:10%
+}
+id{
+ margin-left:10%;
+ margin-right:10%;
+ width:80%;
+ text-align:center;
+ float:left;
+}
+
+html{
+ width:80%;
+ margin-left:10%;
+ margin-right:10%;
+ color:black;
+ background-color:white;
+}
+footer{
+ position:fixed;
+ bottom:0px;
+}
+
+label {
+ cursor: pointer;
+}
+
+input[type=checkbox] {
+ position: absolute;
+ /*top: 0;
+ left: 0;*/
+ opacity: 0;
+}
+
+body>ol,body>ul,body>p{
+ float:left;
+}
+
+input[type=checkbox] ~ul{
+ height:0px;
+ overflow:hidden;
+}
+input[type=checkbox]:checked ~ul{
+ height:auto;
+}