Design improvements by Jonas
This commit is contained in:
parent
64b99984ff
commit
299f9a9647
2 changed files with 23 additions and 9 deletions
BIN
pix/icon.png
Normal file
BIN
pix/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
32
view.php
32
view.php
|
@ -34,19 +34,37 @@ li {
|
||||||
|
|
||||||
li.right {
|
li.right {
|
||||||
float: right;
|
float: right;
|
||||||
|
margin: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
li.logo {
|
li.logo {
|
||||||
margin-left: 2em;
|
margin-left: 1em;
|
||||||
margin-right: 2em;
|
margin-right: 1em;
|
||||||
|
padding-top: 6px;
|
||||||
|
padding-bottom: 6px;
|
||||||
|
line-height: 52px;
|
||||||
|
height: 52px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.logo img {
|
||||||
|
display: block;
|
||||||
|
height: 100%;
|
||||||
|
width: auto;
|
||||||
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
li a,span {
|
li a,span {
|
||||||
display: block;
|
display: block;
|
||||||
color: white;
|
color: white;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 14px 16px;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
line-height: 52px;
|
||||||
|
font-family: sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
li a {
|
||||||
|
padding: 14px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
li a.hover:hover {
|
li a.hover:hover {
|
||||||
|
@ -62,11 +80,7 @@ body {
|
||||||
|
|
||||||
iframe {
|
iframe {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
}
|
border: 0;
|
||||||
|
|
||||||
img {
|
|
||||||
height: 100%;
|
|
||||||
width: auto;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<link rel="stylesheet" type="text/css" href="https://fa.kumi.systems/css/all.css">
|
<link rel="stylesheet" type="text/css" href="https://fa.kumi.systems/css/all.css">
|
||||||
|
@ -74,7 +88,7 @@ img {
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<ul>
|
<ul>
|
||||||
<li class="logo"><img src="pix/icon.gif"></li>
|
<li class="logo"><img src="pix/icon.png"></li>
|
||||||
<li><span><?php echo($expcontent->name); ?></span></li>
|
<li><span><?php echo($expcontent->name); ?></span></li>
|
||||||
<li class="right"><a class="hover" href="javascript:history.back();"><i class="fas fa-times"></i></a></li>
|
<li class="right"><a class="hover" href="javascript:history.back();"><i class="fas fa-times"></i></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in a new issue