summaryrefslogtreecommitdiff
path: root/00_css/custom.css
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2019-03-17 13:34:44 +0100
committerMiguel <m.i@gmx.at>2019-03-17 13:34:44 +0100
commit331195b0d690d89d43e7eca9565ea2b013e87f25 (patch)
treecda936e57d6378183d535800d9c3dec0a0267350 /00_css/custom.css
parent3b32429a0064159842a4147eb4accc7bdba63553 (diff)
many things
Diffstat (limited to '00_css/custom.css')
-rw-r--r--00_css/custom.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/00_css/custom.css b/00_css/custom.css
new file mode 100644
index 0000000..3baf6e0
--- /dev/null
+++ b/00_css/custom.css
@@ -0,0 +1,59 @@
+/* miguel's custom */
+body{background-color:#dde;}
+
+.clear{
+ clear:both;
+}
+footer{
+ border-top: 1px solid black;
+}
+header a{
+ color:black;
+ text-decoration:none;
+}
+
+a{
+ color:#45b;
+}
+
+ul li{
+ list-style-type: none;
+}
+
+ul li:before{
+ content: ">>";
+ padding-right: 1em;
+ color: #e21;
+}
+
+#breadcrumbs{
+ border-top: 1px solid black;
+}
+#breadcrumbs li{
+ float:left;
+ margin-right:0;
+}
+#breadcrumbs ul li:first-child:before {
+ content: '';
+ padding-right: 0em;
+}
+#breadcrumbs ul li:not(:first-child):before {
+ content: '>>';
+ position: relative;
+ top: 0px;
+ padding-right: 1em;
+ padding-left: 1em;
+ color: #e21;
+}
+#submenu ul{
+ list-style-type: none;
+}
+
+video{
+ width:640px;
+ max-width:100%
+}
+
+.container img{
+ max-width:100%
+}