From 92d52ef8db5b582f7821cfe6a95ee1a5fff3cde1 Mon Sep 17 00:00:00 2001 From: 3err0 Date: Sat, 7 Mar 2020 15:49:14 +0800 Subject: [PATCH] first commit --- footer.php | 3 ++ header.php | 11 ++++++ index.php | 24 +++++++++++++ page.php | 15 +++++++++ single.php | 15 +++++++++ style.css | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 166 insertions(+) create mode 100644 footer.php create mode 100644 header.php create mode 100644 index.php create mode 100644 page.php create mode 100644 single.php create mode 100644 style.css diff --git a/footer.php b/footer.php new file mode 100644 index 0000000..9870926 --- /dev/null +++ b/footer.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/header.php b/header.php new file mode 100644 index 0000000..db0bd22 --- /dev/null +++ b/header.php @@ -0,0 +1,11 @@ + +> + + + + + <?php bloginfo( 'name' ); ?> + + +> + \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..1e97a50 --- /dev/null +++ b/index.php @@ -0,0 +1,24 @@ + + +
+
+ +

# Pavel Kuleshov

+

+ + Гик, Безумец, IT'шник, Linux'оид +

+ Известен в сети под псевдонимами:
+ > Kamikadze, 3err0 +

+ Социалки:
+ > Telegram / Github / VK +
+

+

+ © 2020 +

+
+
+ + \ No newline at end of file diff --git a/page.php b/page.php new file mode 100644 index 0000000..6de85f5 --- /dev/null +++ b/page.php @@ -0,0 +1,15 @@ + + +'; + the_title(); + the_content(); + echo ''; + } else { + echo "asd"; + } +?> + + \ No newline at end of file diff --git a/single.php b/single.php new file mode 100644 index 0000000..6de85f5 --- /dev/null +++ b/single.php @@ -0,0 +1,15 @@ + + +'; + the_title(); + the_content(); + echo ''; + } else { + echo "asd"; + } +?> + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..d8f3582 --- /dev/null +++ b/style.css @@ -0,0 +1,98 @@ +/* +Theme Name: ZERRO +Version: 0.1 +Description: Personal theme +Author: Pavel Kuleshov +Author URI: https://3err0.ru +*/ + +html, body { + background: #fafafa; +} +body { + line-height: 1.5; +} +h1 { + font-size: 1.7em; + font-weight: normal; + line-height: 1.2em; + margin-top: 0; +} +a { + color: rgb(39, 110, 242); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} + +.content { + background-color: white; + border-radius: 2px; + box-shadow: 0 4px 6px 1px rgba(50, 50, 50, 0.14); + box-sizing: border-box; + color: black; + line-height: 1.5; + margin: 5.5em auto 0; + max-width: 640px; + padding: 30px 35px 30px 37px; + width: 100%; + font-family: 'Segoe UI', Tahoma, sans-serif; + font-size: 75%; +} +.content:after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; +} +.content > span { + display: block; +} +.content p:last-child { + margin-bottom: 4px; +} + +@media (max-width: 700px) { + body { + margin: 1em 2em 2em; + } +} +@media (max-width: 400px) { + body { + margin: 3em 1.5em 2em; + } +} +@media (max-height: 480px) and (max-width: 400px) { + .content { + margin: auto; + } +} + +.content > span { + max-width: 416px; +} + +.avatar { + -webkit-margin-after: 10px; + -webkit-margin-before: 4px; + -webkit-margin-start: 25px; + content: -webkit-image-set(url('https://proxy.3err0.ru/me.png') 1x); + float: right; + height: 128px; + width: 128px; + border-radius: 50%; +} + +html[dir='rtl'] .icon { + float: left; +} + +@media (max-width: 400px) { + .icon { + -webkit-margin-start: 15px; + height: 96px; + width: 96px; + } +} \ No newline at end of file