tisnova-linka/90s.css

120 lines
1.7 KiB
CSS
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

* { box-sizing: border-box }
body {
font-family: arial, sans-serif;
background: url(bliss.jpg) no-repeat fixed center/cover;
}
.window {
max-width: 50em;
margin: 1em auto;
margin-bottom: 3em;
padding-top: 0;
border: 1px solid darkgrey;
background-color: lightgrey;
}
.window h1, .window h2 {
display: block;
background-color: darkblue;
color: white;
font-weight: bold;
font-size: 100%;
margin: 0;
padding: 2px;
}
.window h1::after, .window h2::after {
content: "×";
float: right;
background-color: lightgrey;
color: black;
border: 1px solid darkgrey;
}
.window h1 img, .window h2 img {
height: 16px;
margin-right: 3px;
}
.window a {
color: blue;
text-decoration: none;
}
.window a:hover {
text-decoration: underline;
}
.window .menu, .window .menubar {
padding: 2px;
margin: 0;
border-bottom: 1px solid darkgrey;
}
.window .menu li, .window .menubar li {
display: inline-block;
list-style-type: none;
margin: 0;
padding: 0;
padding-right: 3px;
}
.window .menu li a, .window .menubar li a {
color: black;
}
.window .menu li a:hover {
background-color: darkblue;
color: white;
text-decoration: none;
}
.window .menubar li a {
border: 1px solid darkgrey;
height: 34px;
line-height: 34px;
display: block;
margin: 2px;
}
.window .menubar li a:hover {
text-decoration: none;
outline: 1px dotted black;
}
.window .menubar li a img {
vertical-align: middle;
}
.window .pad {
padding: 1em;
}
.window img {
max-width: 100%;
}
.window hr {
border: none;
border-bottom: 1px solid darkgrey;
}
#clippy {
position: fixed;
bottom: 20px;
right: 20px;
z-index: -1;
}
.maindlg {
display: block;
height: 20ex;
}
.hidden {
display: none;
}