initial commit
After Width: | Height: | Size: 435 KiB |
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* 000webhost theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]000webhost.jpg" alt="Site is Under Construction" title="Site is Under Construction">
|
||||
</div>
|
||||
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,74 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* 000webhost theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: #ffdda0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 0 auto 5px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 40px 0 40px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
border-bottom: 1px solid #414042;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 103 KiB |
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Ambulance theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]ambulance.png" alt="Our site is getting some much needed care" title="Our site is getting some much needed care">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Ambulance theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #292929;
|
||||
background: #d1dfeb;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 2px solid #bdbfc1;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #d86221;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #292929;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #d86221;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 94 KiB |
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Bulldozer theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]">
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]bulldozer.png" alt="Bulldozer at Work" title="Bulldozer at Work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Bulldozer theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: linear-gradient(to bottom, #9be2fe 0%, #67d1fb 100%);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffba33;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
#hero-image {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Christmas theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Mountains+of+Christmas:700">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]santa.png" alt="Happy Holidays!" title="Happy Holidays!">
|
||||
<div id="snow-bottom"></div>
|
||||
</div>
|
||||
<div class="container-wrap">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 121 KiB |
After Width: | Height: | Size: 9.6 KiB |
After Width: | Height: | Size: 38 KiB |
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Christmas theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #3f3e40;
|
||||
background: #90d479;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 0 auto 0 auto;
|
||||
padding: 40px 0 0 0;
|
||||
background-color: #41d1fd;
|
||||
background-image: url(snow.png);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 35%;
|
||||
margin: 0 0 -35px 0;
|
||||
}
|
||||
|
||||
#snow-bottom {
|
||||
height: 27px;
|
||||
background-image: url(snow-bottom.png);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.container-wrap {
|
||||
background-color: #fff;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #ff7041;
|
||||
font-family: 'Mountains of Christmas', cursive;
|
||||
font-weight: 700;
|
||||
margin: 30px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #3f3e40;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ff7041;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
#hero-image {
|
||||
padding: 20px 0 0 0;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 21 KiB |
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Clock theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container top-container">
|
||||
<div class="row display-table">
|
||||
<div class="col-xs-12 col-md-12 col-lg-4 display-cell">
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]clock.png" alt="Tick tock, tick tock, ..." title="Tick tock, tick tock, ...">
|
||||
<img class="clock-hand" src="[theme-url]clock-hand.png" alt="Tick tock, tick tock, ..." title="Tick tock, tick tock, ...">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xs-12 col-md-12 col-lg-8 display-cell">
|
||||
<h1>[heading1]</h1>
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,131 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Clock CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #fefefe;
|
||||
background: #01c9fd;
|
||||
background: -webkit-linear-gradient(to right, #90fe9d, #01c9fd);
|
||||
background: linear-gradient(to right, #90fe9d, #01c9fd);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
a, a:hover {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.top-container {
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: left;
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.clock-hand {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
transform: rotate(0deg);
|
||||
transform-origin: 50.1% 59.9%;
|
||||
-webkit-animation: spin 30s linear infinite;
|
||||
-moz-animation: spin 30s linear infinite;
|
||||
animation: spin 30s linear infinite;
|
||||
}
|
||||
|
||||
.display-table {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
|
||||
}
|
||||
|
||||
.display-cell {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #fefefe;
|
||||
font-family: "Nunito", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: left;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #fefefe;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #2e2e2e;
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1 {
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.display-table {
|
||||
display: initial;
|
||||
table-layout: auto;
|
||||
}
|
||||
.display-cell {
|
||||
display: block;
|
||||
float: none;
|
||||
}
|
||||
#hero-image img {
|
||||
max-height: 250px
|
||||
}
|
||||
.top-container {
|
||||
padding: 25px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
|
||||
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
|
||||
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
|
After Width: | Height: | Size: 108 KiB |
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Temporarily Closed theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link href="https://fonts.googleapis.com/css?family=Fredoka+One" rel="stylesheet">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]closed.png" alt="Site is Temporarily Closed for Construction" title="Site is Temporarily Closed for Construction">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Temporarily Closed theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 16px;
|
||||
line-height: 150%;
|
||||
color: #3d2850;
|
||||
background: #f2f2f2;
|
||||
background: -webkit-linear-gradient(to left, #f2f2f2, #f6f6f6);
|
||||
background: linear-gradient(to left, #f2f2f2, #f6f6f6);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #3d2850;
|
||||
font-family: "Fredoka One", sans-serif;
|
||||
font-weight: 600;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #23272a;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ee9825;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
6
hamrokhaanpaan/wp-content/__plugins/under-construction-page/themes/css/bootstrap.min.css
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Common frontend CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
.content img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
#linkback {
|
||||
font-size: small;
|
||||
text-align: center;
|
||||
opacity: 0.55;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#login-button {
|
||||
position: relative;
|
||||
right: 0;
|
||||
bottom: 50px;
|
||||
text-align: right;
|
||||
float: right;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#login-button a {
|
||||
background-color: rgba(70, 70, 70, 1);
|
||||
border-radius: 5px 0 0 5px;
|
||||
opacity: 0.3;
|
||||
padding: 10px;
|
||||
color: #ffffff;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#login-button a:hover {
|
||||
box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
#login-button {
|
||||
bottom: 5px;
|
||||
}
|
||||
#login-button a {
|
||||
padding: 5px;
|
||||
}
|
||||
#social a i {
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
4
hamrokhaanpaan/wp-content/__plugins/under-construction-page/themes/css/font-awesome.min.css
vendored
Normal file
After Width: | Height: | Size: 123 KiB |
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Chyber Chick theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]cyber_chick.png" alt="Cyber Chick at work" title="Cyber Chick at work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Cyber Chick theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #222222;
|
||||
background: #d2d3d5; /* Old browsers */
|
||||
background: -moz-linear-gradient(-45deg, #d2d3d5 0%, #e4e5e7 44%, #fafafa 80%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(-45deg, #d2d3d5 0%,#e4e5e7 44%,#fafafa 80%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(135deg, #d2d3d5 0%,#e4e5e7 44%,#fafafa 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2d3d5', endColorstr='#fafafa',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #222222;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #23272a;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #e78967;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 107 KiB |
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Cyber Chick Dark theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]cyber_chick_dark.png" alt="Cyber Chick at work in the dark" title="Cyber Chick at work in the dark">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,78 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Cyber Chick Dark theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #ffffff;
|
||||
background: #1b2b3a;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 0 auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #e2e2e2;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #bdbec0;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #cc6633;
|
||||
}
|
||||
|
||||
@media (max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width:1200px){
|
||||
#hero-image img {
|
||||
max-width: 80vh;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 171 KiB |
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Things Went Dark theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]dark.jpg" alt="Mad Designer at work in the dark" title="Mad Designer at work in the dark">
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,78 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Things Went Dark theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #ffffff;
|
||||
background: #212f3c;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 0 auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #e2e2e2;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #bdbec0;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #cc6633;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media(min-width:1600px){
|
||||
#hero-image img {
|
||||
max-width: 60%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 177 KiB |
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Dumper Truck theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]">
|
||||
<meta name="generator" content="[generator]">
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,900" rel="stylesheet">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]dumper_truck.png" alt="Dumper Truck at Work" title="Dumper Truck at Work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,79 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Dumper Truck theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background-color: hsl(222, 40%, 64%);
|
||||
background: linear-gradient(to bottom, hsla(222, 40%, 64%, 1) 0%, hsla(222, 60%, 64%, 1) 100%);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
max-height: 50vh;
|
||||
margin-bottom: -2px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffba33;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
#hero-image {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,14 @@
|
||||
# Due to an increased number of CORS related issues caused by people opening their sites from
|
||||
# site.com while having WP configured on www.site.com (and vice-versa) we've implemented this
|
||||
# temporary, far-from-ideal fix to make sure FontAwesome still gets loaded.
|
||||
# We're working on a different solution that won't use "*".
|
||||
# For all security snowflake experts out there - keep your shirt on. Rule is applied to only
|
||||
# 6 files. Nobody will die ...
|
||||
#
|
||||
# Gordan @ WebFactory, 2017/10/10
|
||||
|
||||
<IfModule mod_headers.c>
|
||||
<FilesMatch "\.(woff|woff2|otf|eot|svg|ttf)$">
|
||||
Header set Access-Control-Allow-Origin "*"
|
||||
</FilesMatch>
|
||||
</IfModule>
|
After Width: | Height: | Size: 434 KiB |
After Width: | Height: | Size: 81 KiB |
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Forklift theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="[theme-url-common]css/bootstrap.min.css?v=[version]" type="text/css">
|
||||
<link rel="stylesheet" href="[theme-url]style.css?v=[version]" type="text/css">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]forklift.png" alt="Forklift at Work" title="Forklift at Work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,77 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Forklift theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: #fd6439 ; /* Old browsers */
|
||||
background: -moz-linear-gradient(-45deg, #fd6439 0%,#fd6438 67%,#000000 139%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(-45deg, #fd6439 0%,#fd6438 67%,#000000 139%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(135deg, #fd6439 0%,#fd6438 67%,#000000 139%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd6439', endColorstr='#fafafa',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.24);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 116 KiB |
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Hard Worker theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]">
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]hard_worker.png" alt="Hard worker on site" title="Hard worker on site">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Hard Worker theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #bebfc1;
|
||||
background: linear-gradient(to bottom, #0e6f8d 0%, #084C61 100%);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.9);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #d2d4d5;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #bebfc1;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #FFBB33;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
#hero-image {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 137 KiB |
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Hot Air Baloon theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link href="https://fonts.googleapis.com/css?family=Fredoka+One" rel="stylesheet">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]hot_air_baloon.png" alt="Hot Air Baloon flying" title="Hot Air Baloon flying">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Hot Air Baloon theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #313131;
|
||||
background: #E0EAFC;
|
||||
background: -webkit-linear-gradient(to left, #E0EAFC , #CFDEF3);
|
||||
background: linear-gradient(to left, #E0EAFC , #CFDEF3);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #222222;
|
||||
font-family: "Fredoka One", sans-serif;
|
||||
font-weight: 600;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #23272a;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #d86221;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
font-weight: 500;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Internet of Things theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]iot.png" alt="The Internet of Things" title="The Internet of Things">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 117 KiB |
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Internet of Things theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #ffffff;
|
||||
background: #cd1f1f;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
box-shadow: inset 0px -3px 0px #3f3e40;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #ffffff;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #3d3c3e;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
#hero-image {
|
||||
box-shadow: inset 0px -1px 0px #3f3e40;
|
||||
}
|
||||
}
|
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Laptop theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link href="https://fonts.googleapis.com/css?family=Share+Tech" rel="stylesheet">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container top-container">
|
||||
<div class="row display-table">
|
||||
<div class="col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]laptop.png" alt="Our minions are coding away as we speak" title="Our minions are coding away as we speak">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-offset-1 col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,113 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Laptop theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #dddee0;
|
||||
background-color: #282828;
|
||||
background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent);
|
||||
background-size: 50px 50px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.top-container {
|
||||
padding: 100px 0 75px 0;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.display-table {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.display-cell {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 36px;
|
||||
color: #dddee0;
|
||||
font-family: "Share Tech", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #dddee0;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #d86221;
|
||||
}
|
||||
|
||||
@media(max-width: 767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1 {
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.display-table {
|
||||
display: initial;
|
||||
table-layout: auto;
|
||||
}
|
||||
.display-cell {
|
||||
display: block;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
}
|
||||
#hero-image img {
|
||||
max-height: 250px;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
}
|
||||
.top-container {
|
||||
padding: 25px 0 0 0;
|
||||
}
|
||||
}
|
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Light Bulb theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container top-container">
|
||||
<div class="row display-table">
|
||||
<div class="col-lg-offset-1 col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
<div class="col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<div id="hero-image">
|
||||
<img class="fadein" src="[theme-url]light_bulb_off.png" alt="Switching on the site soon ..." title="Switching on the site soon ...">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
var std = $('.fadein').attr('src');
|
||||
var hover = std.replace('_off', '_on');
|
||||
$('.fadein').clone().insertAfter('.fadein').attr('src', hover).removeClass('fadein').siblings().css({
|
||||
position:'absolute'
|
||||
});
|
||||
$('.fadein').mouseenter(function() {
|
||||
$('.fadein').stop().fadeTo(600, 0);
|
||||
}).mouseleave(function() {
|
||||
$('.fadein').stop().fadeTo(400, 1);
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 52 KiB |
@@ -0,0 +1,113 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Light Bulb theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #2e2e2e; /* #b9b9b9; */
|
||||
|
||||
|
||||
background: #8e9eab; /* fallback for old browsers */
|
||||
background: -webkit-linear-gradient(to right, #eef2f3, #8e9eab); /* Chrome 10-25, Safari 5.1-6 */
|
||||
background: linear-gradient(to right, #eef2f3, #8e9eab); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
|
||||
|
||||
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.top-container {
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.display-table {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.display-cell {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #2e2e2e;
|
||||
font-family: "Nunito", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #f9b91a;
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1 {
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.display-table {
|
||||
display: initial;
|
||||
table-layout: auto;
|
||||
}
|
||||
.display-cell {
|
||||
display: block;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
}
|
||||
#hero-image img {
|
||||
max-height: 250px
|
||||
}
|
||||
.top-container {
|
||||
padding: 25px 0;
|
||||
}
|
||||
}
|
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Lighthouse theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:200,600,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]lighthouse.png" alt="Lighthouse" title="Lighthouse">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 78 KiB |
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Lighthouse theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #2C3D55;
|
||||
background: #98a8be;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
border-bottom: 5px solid #414042;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #2C3D55;
|
||||
font-family: "Nunito", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #2C3D55;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #e0632f;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
#hero-image {
|
||||
border-bottom: 3px solid #414042;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 272 B |
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Loader theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]loader.png" alt="Loader at Work" title="Loader at Work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 113 KiB |
@@ -0,0 +1,77 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Loader theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: #d1dfeb; /* Old browsers */
|
||||
background: -moz-linear-gradient(-45deg, #d1dfeb 0%,#d1dfeb 67%,#dee1e3 139%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(-45deg, #d1dfeb 0%,#d1dfeb 67%,#dee1e3 139%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: url('background_grid.png'), linear-gradient(135deg, #d1dfeb 0%, #d1dfeb 55%, #dee1e3 139%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1dfeb', endColorstr='#dee1e3',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 1);
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffc75e;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Mad Designer theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]mad-designer.png" alt="Mad Designer at work" title="Mad Designer at work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 158 KiB |
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Mad Designer theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #222222;
|
||||
background: #d2d3d5; /* Old browsers */
|
||||
background: -moz-linear-gradient(-45deg, #d2d3d5 0%, #e4e5e7 44%, #fafafa 80%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(-45deg, #d2d3d5 0%,#e4e5e7 44%,#fafafa 80%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(135deg, #d2d3d5 0%,#e4e5e7 44%,#fafafa 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d2d3d5', endColorstr='#fafafa',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #222222;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #23272a;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #e78967;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* People at Work theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]people.png" alt="Our Best People at Work" title="Our Best People at Work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 132 KiB |
@@ -0,0 +1,72 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* People at Work theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: #22ea98;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 40px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 60px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #f9b91a;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* People at Work #2 theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:200,600,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]people_2.png" alt="People at Work" title="People at Work">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 166 KiB |
@@ -0,0 +1,79 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* People at Work #2 theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #2C3D55;
|
||||
background: radial-gradient(circle, transparent 20%, slategray 20%, slategray 80%, transparent 80%, transparent),
|
||||
radial-gradient(circle, transparent 20%, slategray 20%, slategray 80%, transparent 80%, transparent) 50px 50px,
|
||||
linear-gradient(#A8B1BB 8px, transparent 8px) 0 -4px,
|
||||
linear-gradient(90deg, #A8B1BB 8px, transparent 8px) -4px 0;
|
||||
background-color: slategray;
|
||||
background-size: 100px 100px, 100px 100px, 50px 50px, 50px 50px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.container {
|
||||
background-color: rgba(168, 177, 187, 0.85);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #2C3D55;
|
||||
font-family: "Nunito", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #2C3D55;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #fbe99a;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Plain Text theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<span id="logo-wrap">
|
||||
<img src="[theme-url]ucp-cog.png" alt="Site is Under Construction" title="Site is Under Construction" id="logo">
|
||||
</span>
|
||||
</header>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,86 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Plain Text theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.65em;
|
||||
color: #4d4d4d;
|
||||
background: #f7f7f7;
|
||||
text-rendering: optimizeLegibility;
|
||||
}
|
||||
|
||||
.container {
|
||||
background-color: #f7f7f7;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #f7f7f7;
|
||||
border-top: 12px solid #ffffff;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#logo {
|
||||
background-color: #ffffff;
|
||||
max-width: 50px;
|
||||
-webkit-transition: -webkit-transform 1s ease-in;
|
||||
transition: transform 1s ease-out;
|
||||
}
|
||||
|
||||
#logo:hover {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
|
||||
#logo-wrap {
|
||||
padding: 25px;
|
||||
background-color: #ffffff;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 6rem;
|
||||
color: #23272a;
|
||||
font-family: "Montserrat", "Helvetica-Neue", "Helvetica", "Arial", "san-serif";
|
||||
font-weight: 700;
|
||||
letter-spacing: 0;
|
||||
text-transform: none;
|
||||
padding: 0;
|
||||
margin: 11.875rem 0 1.5rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-size: 1.875rem;
|
||||
color: #707070;
|
||||
letter-spacing: 2px;
|
||||
margin-top: 60px;
|
||||
font-family: "Montserrat", "Helvetica-Neue", "Helvetica", "Arial", "sans-serif";
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #23272a;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #de2a13;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 4rem;
|
||||
margin: 7rem 0 1.5rem 0;
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Puzzles theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]puzzles.png" alt="We're putting together a new site for you" title="We're putting together a new site for you">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 280 KiB |
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Puzzles theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #414042;
|
||||
background: #fcb10d; /* Old browsers */
|
||||
background: -moz-linear-gradient(0deg, #fcb10d 0%, #fcb10d 44%, rgba(252, 177, 13, 0.75) 80%, rgba(252, 177, 13, 0.70) 100%); /* FF3.6-15 */
|
||||
background: -webkit-linear-gradient(0deg, #fcb10d 0%, #fcb10d 44%, rgba(252, 177, 13, 0.75) 80%, rgba(252, 177, 13, 0.70) 100%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(0deg, #fcb10d 0%, #fcb10d 44%, rgba(252, 177, 13, 0.75) 80%, rgba(252, 177, 13, 0.70) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 0 auto 30px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #414042;
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 25px 0 45px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Research theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container top-container">
|
||||
<div class="row display-table">
|
||||
<div class="col-lg-offset-1 col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
<div class="col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]research.png" alt="We're doing research to make our new site the best site ever." title="We're doing research to make our new site the best site ever.">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 35 KiB |
@@ -0,0 +1,106 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Research theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #2e2e2e;
|
||||
background: #f6fafe;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.top-container {
|
||||
padding: 50px 0;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
.display-table {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
.display-cell {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #2e2e2e;
|
||||
font-family: 'Nunito', sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: 'Helvetica', 'Arial', sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #414042;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #ff7900;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
h1 {
|
||||
font-size: 28px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
h1 {
|
||||
text-align: center;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.display-table {
|
||||
display: initial;
|
||||
table-layout: auto;
|
||||
}
|
||||
.display-cell {
|
||||
display: block;
|
||||
vertical-align: middle;
|
||||
float: none;
|
||||
}
|
||||
#hero-image img {
|
||||
max-height: 250px;
|
||||
}
|
||||
.top-container {
|
||||
padding: 25px 0;
|
||||
}
|
||||
}
|
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Rocket theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:200,600,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]rocket.png" alt="Rocket Launch" title="Rocket Launch">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 81 KiB |
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Rocket theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #2C3D55;
|
||||
background: #93b9dc; /* Old browsers */
|
||||
xbackground: -moz-linear-gradient(-45deg, #93b9dc 0%,#93b9dc 44%,#b7cee2 80%); /* FF3.6-15 */
|
||||
xbackground: -webkit-linear-gradient(-45deg, #93b9dc 0%,#93b9dc 44%,#b7cee2 80%); /* Chrome10-25,Safari5.1-6 */
|
||||
background: linear-gradient(135deg, #93b9dc 0%,#93b9dc 44%,#b7cee2 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#93b9dc', endColorstr='#b7cee2',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
border-bottom: 5px solid #414042;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #2C3D55;
|
||||
font-family: "Nunito", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #2C3D55;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #E8C547;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
#hero-image {
|
||||
border-bottom: 3px solid #414042;
|
||||
}
|
||||
}
|
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Rocket #2 theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:200,600,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]rocket.png" alt="Site will launch soon" title="Site will launch soon">
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 35 KiB |
@@ -0,0 +1,74 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Rocket #2 theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
html {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
line-height: 120%;
|
||||
color: #fefefe;
|
||||
background: #e53935;
|
||||
background: -webkit-linear-gradient(to bottom, #e35d5b, #e53935);
|
||||
background: linear-gradient(to bottom, #e35d5b, #e53935);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
#hero-image {
|
||||
text-align: center;
|
||||
margin: 20px auto 10px auto;
|
||||
}
|
||||
|
||||
#hero-image img {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 34px;
|
||||
color: #fefefe;
|
||||
font-family: "Nunito", sans-serif;
|
||||
font-weight: 900;
|
||||
margin: 20px 0 30px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-family: "Helvetica", "Arial", sans-serif;
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #fefefe;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #2C3D55;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
margin: 10px 0 30px 0;
|
||||
}
|
||||
#hero-image img {
|
||||
max-width: 95%;
|
||||
}
|
||||
}
|
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Sad Site theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="row" id="header_image">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<img src="[theme-url]sad_site.jpg" alt="Sad Site is under construction :(" title="Sad Site is under construction :(">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 26 KiB |
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Sad Site theme CSS
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
body {
|
||||
font-weight: 400;
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.65em;
|
||||
color: #bcbec0;
|
||||
background: #f1f2f2;
|
||||
text-rendering: optimizeLegibility;
|
||||
}
|
||||
|
||||
#header_image {
|
||||
margin: 25px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#header_image img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 4.5rem;
|
||||
color: #23272a;
|
||||
font-family: "Montserrat", "Helvetica-Neue", "Helvetica", "Arial", "san-serif";
|
||||
font-weight: 700;
|
||||
letter-spacing: 0;
|
||||
text-transform: none;
|
||||
padding: 0;
|
||||
margin: 0 0 1.5rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
font-size: 1.875rem;
|
||||
color: #949697;
|
||||
letter-spacing: 2px;
|
||||
margin-top: 20px;
|
||||
font-family: "Montserrat", "Helvetica-Neue", "Helvetica", "Arial", "sans-serif";
|
||||
}
|
||||
|
||||
#social {
|
||||
text-align: center;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
#social a i {
|
||||
color: #949697;
|
||||
margin: 10px;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
#social a:hover i {
|
||||
color: #47d2e9;
|
||||
}
|
||||
|
||||
@media(max-width:767px){
|
||||
h1 {
|
||||
font-size: 4rem;
|
||||
margin: 0 0 1.5rem 0;
|
||||
}
|
||||
}
|
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* UnderConstructionPage
|
||||
* Safe theme
|
||||
* (c) WebFactory Ltd, 2015 - 2021
|
||||
*/
|
||||
|
||||
|
||||
// this is an include only WP file
|
||||
if (!defined('ABSPATH')) {
|
||||
die;
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>[title]</title>
|
||||
<meta name="description" content="[description]" />
|
||||
<meta name="generator" content="[generator]">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:400,900">
|
||||
[head]
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container top-container">
|
||||
<div class="row display-table">
|
||||
<div class="col-lg-offset-1 col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<h1>[heading1]</h1>
|
||||
</div>
|
||||
<div class="col-xs-12 col-md-12 col-lg-5 display-cell">
|
||||
<div id="hero-image">
|
||||
<img src="[theme-url]safe.png" alt="Site is safe and secure" title="Site is safe and secure">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xs-12 col-md-8 col-md-offset-2 col-lg-offset-2 col-lg-8">
|
||||
<p class="content">[content]</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" id="social">
|
||||
<div class="col-xs-12 col-md-12 col-lg-12">
|
||||
[social-icons]
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
[footer]
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 31 KiB |