From 670c38f8ed1deb9b19371ced105975bea0b16d26 Mon Sep 17 00:00:00 2001 From: sejo Date: Fri, 21 May 2021 22:21:39 -0500 Subject: movido estilo a src/ --- src/estilo.css | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 src/estilo.css (limited to 'src/estilo.css') diff --git a/src/estilo.css b/src/estilo.css new file mode 100644 index 0000000..1ccf886 --- /dev/null +++ b/src/estilo.css @@ -0,0 +1,95 @@ +/* links en el sitio */ +a[href^="./"]{ + text-decoration:none; +} +/* links externos */ +a[rel=external]:after{ + content:"↝"; +} +a{ + color: #963; +} +a:hover{ + background-color: #963; + color: #fff; + border-radius:3px; +} +a:visited{ + color: #630; +} +a:visited:hover{ + background-color: #630; + color: #fff; + border-radius:3px; +} + +body{ + color: #100; + max-width:40em; + margin:0 auto; + font-size:18px; + padding: 1em; +} + +nav,footer,section{ + border-top: 3px dotted; +} +footer{ + font-size: x-small; + text-align: center; +} + +pre{ + background-color: #fee; + color: #433; + padding:1em; + border-radius:5px; + overflow-x: auto; +} + +main h1{ + font-size: 30px; +} +main h2{ + font-size: 25px; + border-top: 1px dotted; + padding-top: 0.5em; +} +main h3{ + font-size: 20px; +} + +gallery{ + display:flex; + flex-direction:row; + flex-wrap:wrap; + justify-content:space-evenly; + align-content:center; +} +img{ + margin:10px; + border-radius:5px; +} + +nav{ + font-size:smaller; +} + +nav li{ + list-style-type:square; +} + +table,th,td{ + border-style:inset; + border-width: 1px; +} +table{ + margin:10px; + overflow-x: auto; +} + +#count{ /* para tiempo */ +word-wrap:break-word; +font-size:9px; +font-family:monospace; +} -- cgit v1.2.3