a MVC framework for php
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

72 lines
1.1 KiB

<html>
<head>
<title>{{title}}</title>
<style type=text/css>
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
padding: 2rem;
background: #e5e7eb;
color: #333;
}
.badge {
background : #ddd;
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 4px;
font-weight: bold;
color: #444;
}
.card {
background: white;
box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
margin-bottom: 4rem;
position: relative;
}
.card:not(.edgeless) {
padding: 2rem;
}
.list-item {
padding: 1rem 2rem;
transition: all 0.2s ease-in-out;
}
.list-item:not(:last-of-type) {
border-bottom : solid 1px #ddd;
}
.list-item:hover {
background: #dd524c;
}
.list-item:hover, .list-item:hover * {
color: white !important;
}
.file {
color: #aaa;
display: block;
}
.info {
display: flex;
white-space: nowrap;
gap: 1rem;
color: #888;
font-weight: bold;
position: absolute;
top: 2rem;
right: 2rem;
}
.info * {
flex: 1;
}
</style>
</head>
<body>
{{$content}}{{/content}}