mirror of
https://github.com/cupcakearmy/liquet.git
synced 2025-09-05 23:40:40 +00:00
Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
c4e54ff847 | ||
|
8a5dff9e28 | ||
|
786dff5ee6 | ||
|
4f68f3d72c | ||
|
62df154688 | ||
|
32e0b63718 | ||
|
546ee17844 | ||
|
06be702099 | ||
|
cac63b53cc | ||
|
61188ff01a | ||
|
88bd93423b | ||
|
b5ddb8ba2a | ||
|
5dc38cc328 | ||
|
855d3bc6e4 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1 +1,3 @@
|
||||
.idea
|
||||
|
||||
data/
|
@@ -4,6 +4,7 @@ services:
|
||||
wp:
|
||||
image: wordpress:5-apache
|
||||
volumes:
|
||||
- ./uploads.ini:/usr/local/etc/php/conf.d/uploads.ini:ro
|
||||
- ./data/wp:/var/www/html
|
||||
- ./liquet:/var/www/html/wp-content/themes/liquet:ro
|
||||
ports:
|
||||
@@ -16,10 +17,3 @@ services:
|
||||
volumes:
|
||||
- ./data/db:/var/lib/mysql
|
||||
env_file: .env
|
||||
|
||||
|
||||
# adminer:
|
||||
# image: adminer
|
||||
# restart: always
|
||||
# ports:
|
||||
# - 8080:8080
|
@@ -1,6 +1,11 @@
|
||||
#singular #main {
|
||||
padding: 8vw 0;
|
||||
padding: 8vw 0 16vh 0;
|
||||
overflow: auto;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
#singular #main a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#singular #header {
|
||||
@@ -20,12 +25,13 @@
|
||||
|
||||
#singular #content {
|
||||
width: 100%;
|
||||
padding: 0 2em;
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
#singular #content > * {
|
||||
max-width: var(--text-width);
|
||||
width: 100%;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
|
||||
|
@@ -1,10 +1,7 @@
|
||||
<?php
|
||||
|
||||
@ini_set( 'upload_max_size' , '128M' );
|
||||
@ini_set( 'post_max_size', '128M');
|
||||
@ini_set( 'max_execution_time', '300' );
|
||||
|
||||
add_theme_support( 'align-wide' );
|
||||
add_theme_support( 'title-tag' );
|
||||
|
||||
add_action( 'wp_enqueue_scripts', function () {
|
||||
wp_enqueue_style( 'flex', get_template_directory_uri() . '/css/flex.css' );
|
||||
|
@@ -5,7 +5,6 @@
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<?php add_theme_support( 'title-tag' ); ?>
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
<body>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
Theme Name: Liquet
|
||||
Author: Niccolo Borgioli
|
||||
Description: Minimalistic clean theme
|
||||
Version: 0.1
|
||||
Version: 0.2
|
||||
License: MIT
|
||||
Tags: minimal, simple, typography, clean
|
||||
Author URI: https://nicco.io
|
||||
@@ -12,6 +12,7 @@ Theme URI: https://github.com/cupcakearmy/liquet
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
--clr-primary: hsl(194, 100%, 88%);
|
||||
--clr-white: #ffffff;
|
||||
--clr-black: #000000;
|
||||
@@ -36,6 +37,8 @@ pre {
|
||||
overflow: auto;
|
||||
background-color: var(--clr-ligher);
|
||||
padding: 1em;
|
||||
border-radius: .25em;
|
||||
overflow-wrap: initial;
|
||||
}
|
||||
|
||||
a {
|
||||
|
5
uploads.ini
Normal file
5
uploads.ini
Normal file
@@ -0,0 +1,5 @@
|
||||
file_uploads = On
|
||||
memory_limit = 512M
|
||||
upload_max_filesize = 512M
|
||||
post_max_size = 512M
|
||||
max_execution_time = 300
|
Reference in New Issue
Block a user