add roundbox-base

This commit is contained in:
abbie 2021-09-20 17:06:28 +01:00
parent 563ea96b80
commit 130b5a567d
No known key found for this signature in database
GPG key ID: 04DDE463F9200F87
2 changed files with 87 additions and 0 deletions

58
roundbox/roundbox-base/dist/style.css vendored Normal file
View file

@ -0,0 +1,58 @@
body {
margin: 0;
font-family: Verdana, sans-serif;
background-color: #FFF;
}
.column {
float: left;
overflow-x: hidden;
z-index: 1;
min-height: 85vh;
height: auto !important;
height: 100%;
width: 100%;
color: #000;
border: solid;
border-radius: 15px;
text-align: center;
}
.pad {
padding: 10px;
}
.head {
float: left;
border: solid;
border-radius: 15px;
width: 100%;
color: #000;
text-align: center;
margin-bottom: 25px;
}
.nav {
text-align: center;
word-spacing: 5px;
color: #000;
border: solid;
border-radius: 15px;
padding-top: 15px;
}
a:link {
color: #000;
}
a:visited {
color: #000;
}
a:hover {
color: #000;
}
a:active {
color: #000;
}

View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{SITE_NAME}</title>
<link rel="stylesheet" type="text/css" href="http://{SITE_DOMAIN}/ewfm_theme/style.css">
</head>
<body>
<div class="head">
<div class="pad">
<h1>{PAGE_TITLE}</h1>
{DIRECTORY_A}
</div>
</div>
</div>
<br/><br/>
<br/><br/>
<div class="column">
<div class="pad">
{PAGE_CONTENT}
</div>
</div>
</body>
</html>