1
0
mirror of https://shylinux.com/x/ContextOS synced 2025-04-26 17:24:05 +08:00
ContextOS/usr/librarys/example.css
2019-05-10 13:03:07 +08:00

69 lines
1.2 KiB
CSS

html, body {
height:100%;
width:100%;
margin:0px;
background-color:#d8d8d8;
}
fieldset table {
font-size:14px;
overflow: auto;
border:solid 1px green;
}
fieldset table caption {
font-size:18px;
font-style:italic;
border:solid 1px green;
}
fieldset table tr:hover {
background-color:lightgreen;
}
fieldset table th {
font-family:monospace;
background-color:lightgreen;
cursor:pointer;
}
fieldset table th.order {
background-color:red;
cursor:pointer;
}
fieldset table td {
max-width:1200px;
font-family:monospace;
padding-left: 10px;
padding-right: 20px;
}
fieldset table td.clip {
background-color:red;
}
fieldset table td:hover {
background-color:red;
}
fieldset pre code, fieldset code pre {
color:white;
font-size:14px;
background-color:#272822;
overflow:scroll;
padding:5px;
border:solid 2px green;
border-left:solid 4px green;
display:block;
}
fieldset.Banner>ul {
margin:0;
padding:0;
}
fieldset.Banner>ul>li {
display:inline;
padding:5px;
margin:0;
}
fieldset.Banner>ul>li:hover {
background-color:red;
}
fieldset.Footer {
clear:both;
}