MOre web bs
This commit is contained in:
58
static/css/base.css
Normal file
58
static/css/base.css
Normal file
@@ -0,0 +1,58 @@
|
||||
body,html {
|
||||
font-family: sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.nav {
|
||||
position: fixed;
|
||||
display: flex;
|
||||
top: 0;
|
||||
list-style: none;
|
||||
gap: 10px;
|
||||
background: gray;
|
||||
padding: 8px;
|
||||
margin: 0px;
|
||||
width: 99.5%;
|
||||
}
|
||||
main {
|
||||
padding-top: 50px
|
||||
}
|
||||
.right {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.pfp {
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
object-fit: cover;
|
||||
vertical-align: middle;
|
||||
margin-right: 5px;
|
||||
|
||||
}
|
||||
|
||||
.nav a {
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
background: gray;
|
||||
vertical-align: middle;
|
||||
|
||||
}
|
||||
|
||||
.nav a:hover {
|
||||
color: #FFFF88
|
||||
}
|
||||
|
||||
footer {
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
padding: 5px;
|
||||
padding-left: 10px;
|
||||
background: gray;
|
||||
color: white;
|
||||
|
||||
}
|
||||
|
||||
|
||||
41
static/css/clients/index.css
Normal file
41
static/css/clients/index.css
Normal file
@@ -0,0 +1,41 @@
|
||||
|
||||
|
||||
.table {
|
||||
margin: 0 auto;
|
||||
width: 80%;
|
||||
font-size: 0.95rem;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
border-collapse: collapse;
|
||||
border: 5px double black;
|
||||
}
|
||||
|
||||
|
||||
.table-header {
|
||||
border: 5px double black;
|
||||
}
|
||||
|
||||
.table-header-item {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding-left: 5px;
|
||||
padding-right: 1px;
|
||||
border: 1px solid black;
|
||||
border-left: 0.5px thin gray;
|
||||
border-right: 0.5px thin gray;
|
||||
}
|
||||
|
||||
|
||||
.table-body {
|
||||
border: 5px double black;
|
||||
}
|
||||
|
||||
.table-cell {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
padding-left: 5px;
|
||||
padding-right: 1px;
|
||||
border: 1px solid black;
|
||||
border-left: 0.5px thin gray;
|
||||
border-right: 0.5px thin gray;
|
||||
}
|
||||
18
static/css/login.css
Normal file
18
static/css/login.css
Normal file
@@ -0,0 +1,18 @@
|
||||
.login-form {
|
||||
|
||||
background: gray;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.login-form input[type="email"],input[type="password"] {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
.login-form input[type="submit"] {
|
||||
width: 98%;
|
||||
margin-top: 10px;
|
||||
}
|
||||
Reference in New Issue
Block a user