renamed imported css files to _* and splitted error.cs back to own file
This commit is contained in:
parent
725c6a8b47
commit
23aa50e4a6
13 changed files with 12 additions and 12 deletions
Binary file not shown.
Binary file not shown.
|
@ -13,7 +13,7 @@ if (strpos($_SERVER['HTTP_HOST'], '.onion') !== false) {
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>404 - Page not found</title>
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
<link href="/css/error.css" rel="stylesheet">
|
||||
<script src="/js/jquery-2.1.3.min.js"></script>
|
||||
<script src="/js/typed.js"></script>
|
||||
</head>
|
||||
|
|
|
@ -16,7 +16,7 @@ function getError500()
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>500 - Internal Server error</title>
|
||||
<link href="/css/style.css" rel="stylesheet">
|
||||
<link href="/css/error.css" rel="stylesheet">
|
||||
<script src="/js/jquery-2.1.3.min.js"></script>
|
||||
<script src="/js/typed.js"></script>
|
||||
</head>
|
||||
|
|
|
@ -23,17 +23,18 @@ body {
|
|||
margin: .625rem .25rem 0 0;
|
||||
display: inline-block;
|
||||
border-radius: .5rem;
|
||||
}
|
||||
.button.green {
|
||||
|
||||
&.green {
|
||||
background: #3BB662;
|
||||
}
|
||||
.button.red {
|
||||
&.red {
|
||||
background: #E75448;
|
||||
}
|
||||
.button.yellow {
|
||||
&.yellow {
|
||||
background: #E5C30F;
|
||||
}
|
||||
}
|
||||
}
|
||||
section.terminal {
|
||||
color: white;
|
||||
font-family: Menlo, Monaco, "Consolas", "Courier New", "Courier";
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
@import "error";
|
||||
@import "fork-awesome.min";
|
||||
@import "general";
|
||||
@import "menue";
|
||||
|
|
Loading…
Reference in a new issue