소스 검색

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. BIN
      static/img/avatar.png
  5. BIN
      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) {}

BIN
static/img/avatar.png 파일 보기

Before After
Width: 325  |  Height: 326  |  Size: 69KB

BIN
static/img/favicon.ico 파일 보기

Before After

Loading…
취소
저장