Procházet zdrojové kódy

added .gitignore

master
Roxie Gibson před 5 roky
rodič
revize
c6db37d5bf
5 změnil soubory, kde provedl 148 přidání a 3 odebrání
  1. +1
    -0
      .gitignore
  2. +39
    -3
      config.toml
  3. +108
    -0
      static/css/vncnt.css
  4. binární
      static/img/avatar.png
  5. binární
      static/img/favicon.ico

+ 1
- 0
.gitignore Zobrazit soubor

@@ -0,0 +1 @@
public/*

+ 39
- 3
config.toml Zobrazit soubor

@@ -1,3 +1,39 @@
baseURL = "http://example.org/"
languageCode = "en-us"
title = "My New Hugo Site"
baseURL = "https://index.roxxers.xyz"
# include content marked as draft
buildDrafts = false
# include content with publishdate in the future
buildFuture = false
# include content already expired
buildExpired = false
# enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs.
relativeURLs = true
disableRSS = true
enableRobotsTXT = true
editor = "nano"
languageCode = "en"
language = "en"
theme = "vncnt-hugo"
title = "roxxers.xyz"

[blackfriday]
extensions = ["hardLineBreak"]

[permalinks]
fixed = ":title/"
posts = "posts/:slug/"

[params]
author = "roxxers.xyz"
email = ""
description = "Landing Page"
bio = "roxxers.xyz and its subsites, by roxie \nbottom text"
avatar = "img/avatar.png"
favicon = "img/favicon.ico"
error404 = "There is no such page."

[params.contact]
git = "https://git.roxxers.xyz"
mastodon = "https://roxxers.xyz/"
first-order = "https://cloud.roxxers.xyz/"


+ 108
- 0
static/css/vncnt.css Zobrazit soubor

@@ -0,0 +1,108 @@
/*
* vncnt,css
* Copyright 2017, Vincent Messow
* vncnt.eu
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* This file expects to inherit a ton of stuff from skeleton.css
*/

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
@import url('skeleton.css');

.landingpage, .error404 {
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
max-width: 90%;
}

.error404 {
text-transform: uppercase;
text-align: center;
}

body {
background: #151515;
color: #ddd;
}

p.reset-margin {
margin-bottom: 1rem; /*skeleton.css: 2.5rem*/
}

.avatar {
width: 20rem;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
max-width: 60%;
box-sizing: border-box;
display: block;
margin: auto;
}

.autocenter {
text-align: center;
}

.icons {

}

.icon {
text-rendering: geometricPrecision !important;
text-decoration: none;
border-bottom: none;
position: relative;
color: #888;
}

.icon:hover {
color: #ADDED9

}

/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
.landingpage, .error404 {
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
max-width: 75%;
}

.avatar {
max-width: 100%;
box-sizing: border-box;
float: right;
}
.autocenter {
text-align: left;
}}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}

binární
static/img/avatar.png Zobrazit soubor

Před Za
Šířka: 325  |  Výška: 326  |  Velikost: 69KB

binární
static/img/favicon.ico Zobrazit soubor

Před Za

Načítá se…
Zrušit
Uložit