67 lines
853 B
CSS
67 lines
853 B
CSS
.btn {
|
|
display: inline-block;
|
|
padding: 0.3em;
|
|
text-decoration: none;
|
|
|
|
font-size: 0.95em;
|
|
font-family: none;
|
|
border: 1px black solid;
|
|
background: blue;
|
|
color: white;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
ul.func-btn li {
|
|
display: inline-block;
|
|
}
|
|
|
|
.table-func ul li{
|
|
display: inline-block;
|
|
padding: 0.5em;
|
|
|
|
}
|
|
.table-func ul li a{
|
|
text-decoration: none;
|
|
}
|
|
|
|
.table-row-func li{
|
|
display: inline-block;
|
|
}
|
|
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background: red;
|
|
}
|
|
|
|
div#container {
|
|
margin: 0 auto;
|
|
padding: 1rem;
|
|
width: 960px;
|
|
height: 100%;
|
|
display: block;
|
|
|
|
background: white;
|
|
}
|
|
|
|
header h1{
|
|
text-align: center;
|
|
}
|
|
|
|
div#main {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.func-btn {
|
|
text-align: right;
|
|
}
|
|
.func-btn>ul li{
|
|
display: inline;
|
|
} |