浏览代码

added .gitignore

master
Roxie Gibson 5 年前
父节点
当前提交
c6db37d5bf
共有 5 个文件被更改,包括 148 次插入3 次删除
  1. +1
    -0
      .gitignore
  2. +39
    -3
      config.toml
  3. +108
    -0
      static/css/vncnt.css
  4. 二进制
      static/img/avatar.png
  5. 二进制
      static/img/favicon.ico

+ 1
- 0
.gitignore 查看文件

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

+ 39
- 3
config.toml 查看文件

@@ -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 查看文件

@@ -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) {}

二进制
static/img/avatar.png 查看文件

之前 之后
宽度: 325  |  高度: 326  |  大小: 69KB

二进制
static/img/favicon.ico 查看文件

之前 之后

正在加载...
取消
保存