add favicon
This commit is contained in:
parent
dab0787388
commit
4968d59dad
BIN
public/assets/icons/favicon.png
Normal file
BIN
public/assets/icons/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 279 KiB |
138
public/assets/styles/main.css
Normal file
138
public/assets/styles/main.css
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
/*
|
||||||
|
___ _ __ ___ _ __ _ __ ___ _ __ __ _ _ __ ___
|
||||||
|
/ __| '__/ __| | '_ \| '__/ _ \ '_ \ / _` | '__/ _ \
|
||||||
|
\__ \ | | (__ | |_) | | | __/ |_) | (_| | | | __/
|
||||||
|
|___/_| \___|____| .__/|_| \___| .__/ \__,_|_| \___|
|
||||||
|
|_____|_| |_|
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/* General */
|
||||||
|
|
||||||
|
* {
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Menu */
|
||||||
|
|
||||||
|
#top {
|
||||||
|
background-color: rgba(51, 51, 51, 1);
|
||||||
|
height: 6%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#top ul {
|
||||||
|
list-style-type: none;
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0.5%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#top li {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#top li a {
|
||||||
|
color: rgba(255, 255, 255, 1);
|
||||||
|
display: block;
|
||||||
|
height: 100%;
|
||||||
|
padding: 14px 16px;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#top li a:hover {
|
||||||
|
background-color: rgba(1, 1, 1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Logo */
|
||||||
|
|
||||||
|
#src_prepare, #src, #prepare {
|
||||||
|
background-color: RGBA(88, 86, 86, 1);
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#src_prepare {
|
||||||
|
height: 30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#src {
|
||||||
|
font-size: 1000%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#prepare {
|
||||||
|
font-size: 3vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* About */
|
||||||
|
|
||||||
|
#about {
|
||||||
|
background-color: rgba(43, 40, 40, 1);
|
||||||
|
color: rgba(153, 156, 150, 1) ;
|
||||||
|
height: 60%;
|
||||||
|
padding: 1% 5% 1% 5%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#about a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#about a:link {
|
||||||
|
color: rgba(42, 161, 152, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
#about a:visited {
|
||||||
|
color: rgba(133, 153, 0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Footer */
|
||||||
|
|
||||||
|
footer {
|
||||||
|
background-color: rgba(0, 0, 0, 1);
|
||||||
|
color: rgba(255, 255, 255, 1);
|
||||||
|
font-size: 1.1vh;
|
||||||
|
height: 20%;
|
||||||
|
padding: 1% 5% 1% 5%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.fcol {
|
||||||
|
float: left;
|
||||||
|
height: 50%;
|
||||||
|
text-align: center;
|
||||||
|
width: 33%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fcol ul {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
.fcol a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fcol a:link {
|
||||||
|
color: rgba(42, 161, 152, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.fcol a:visited {
|
||||||
|
color: rgba(133, 153, 0, 1);
|
||||||
|
}
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
<title>Developers (src_prepare)</title>
|
<title>Developers (src_prepare)</title>
|
||||||
|
|
||||||
|
<link rel="icon" href="assets/icons/favicon.png" />
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
||||||
<link rel="stylesheet" href="assets/styles/main.css" />
|
<link rel="stylesheet" href="assets/styles/main.css" />
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
<title>Home (src_prepare)</title>
|
<title>Home (src_prepare)</title>
|
||||||
|
|
||||||
|
<link rel="icon" href="assets/icons/favicon.png" />
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
||||||
<link rel="stylesheet" href="assets/styles/main.css" />
|
<link rel="stylesheet" href="assets/styles/main.css" />
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
<title>Developers (src_prepare)</title>
|
<title>Developers (src_prepare)</title>
|
||||||
|
|
||||||
|
<link rel="icon" href="assets/icons/favicon.png" />
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
||||||
<link rel="stylesheet" href="assets/styles/main.css" />
|
<link rel="stylesheet" href="assets/styles/main.css" />
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
<title>Shoutouts (src_prepare)</title>
|
<title>Shoutouts (src_prepare)</title>
|
||||||
|
|
||||||
|
<link rel="icon" href="assets/icons/favicon.png" />
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
||||||
<link rel="stylesheet" href="assets/styles/main.css" />
|
<link rel="stylesheet" href="assets/styles/main.css" />
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
<title>Why (src_prepare)</title>
|
<title>Why (src_prepare)</title>
|
||||||
|
|
||||||
|
<link rel="icon" href="assets/icons/favicon.png" />
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
|
||||||
<link rel="stylesheet" href="assets/styles/main.css" />
|
<link rel="stylesheet" href="assets/styles/main.css" />
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user