tisnova-linka/90s.css

120 lines
1.7 KiB
CSS
Raw Permalink Normal View History

2020-09-10 21:18:40 +00:00
* { 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;
}