mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-27 21:56:06 +10:00
86 lines
1.5 KiB
CSS
86 lines
1.5 KiB
CSS
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
font-family: sans-serif;
|
|
}
|
|
a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* box setup */
|
|
.vbox {
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
-webkit-box-orient: vertical;
|
|
-moz-box-orient: vertical;
|
|
-ms-flex-direction: column;
|
|
}
|
|
.hbox {
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
-webkit-box-orient: horizontal;
|
|
-moz-box-orient: horizontal;
|
|
-ms-flex-direction: row;
|
|
}
|
|
.flex {
|
|
-webkit-box-flex: 1;
|
|
-moz-box-flex: 1;
|
|
-ms-flex: 1;
|
|
}
|
|
|
|
/* head */
|
|
#head {
|
|
background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
|
|
background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
|
|
background: linear-gradient(to bottom, #ffffff, #e5e5e5);
|
|
padding: 10px;
|
|
border-bottom: solid 1px #9E9E9E;
|
|
}
|
|
|
|
/* table */
|
|
#results-container {
|
|
border-right: solid 1px black;
|
|
padding: 10px;
|
|
overflow: auto;
|
|
}
|
|
#results-container table {
|
|
border-collapse: collapse;
|
|
}
|
|
#results-container th {
|
|
border-bottom: solid 1px #808080;
|
|
}
|
|
#results-container th,
|
|
#results-container td {
|
|
padding: 2px 5px;
|
|
font-size: 14px;
|
|
}
|
|
#results-container input {
|
|
border: none;
|
|
border-bottom: solid 1px white;
|
|
font-size: 14px;
|
|
}
|
|
#results-container input:hover,
|
|
#results-container input:active {
|
|
border-bottom: dotted 1px black;
|
|
}
|
|
|
|
/* input */
|
|
#input {
|
|
padding: 10px;
|
|
width: 300px;
|
|
}
|
|
#input div {
|
|
padding: 5px;
|
|
}
|
|
#input label {
|
|
display: inline-block;
|
|
width: 100px;
|
|
} |