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>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>404 - Page not found</title>
|
<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/jquery-2.1.3.min.js"></script>
|
||||||
<script src="/js/typed.js"></script>
|
<script src="/js/typed.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -16,7 +16,7 @@ function getError500()
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>500 - Internal Server error</title>
|
<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/jquery-2.1.3.min.js"></script>
|
||||||
<script src="/js/typed.js"></script>
|
<script src="/js/typed.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -23,15 +23,16 @@ body {
|
||||||
margin: .625rem .25rem 0 0;
|
margin: .625rem .25rem 0 0;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-radius: .5rem;
|
border-radius: .5rem;
|
||||||
}
|
|
||||||
.button.green {
|
&.green {
|
||||||
background: #3BB662;
|
background: #3BB662;
|
||||||
}
|
}
|
||||||
.button.red {
|
&.red {
|
||||||
background: #E75448;
|
background: #E75448;
|
||||||
}
|
}
|
||||||
.button.yellow {
|
&.yellow {
|
||||||
background: #E5C30F;
|
background: #E5C30F;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
section.terminal {
|
section.terminal {
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@import "error";
|
|
||||||
@import "fork-awesome.min";
|
@import "fork-awesome.min";
|
||||||
@import "general";
|
@import "general";
|
||||||
@import "menue";
|
@import "menue";
|
||||||
|
|
Loading…
Reference in a new issue