mirror of
https://github.com/Aviortheking/DeltaCMS.git
synced 2025-04-23 03:12:14 +00:00
moved index.css to the files linked ot it
This commit is contained in:
parent
15fd6b0b7f
commit
bf4e1d44c0
75
index.css
75
index.css
@ -1,75 +0,0 @@
|
|||||||
/*
|
|
||||||
This style.css is only here for the index.html & index.php when the configuration is not well
|
|
||||||
it will be merged later when I'm sure i won't edit them
|
|
||||||
*/
|
|
||||||
|
|
||||||
@import url(https://fonts.googleapis.com/css?family=Montserrat);
|
|
||||||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
margin: 0;
|
|
||||||
font-family: 'Montserrat', sans-serif;
|
|
||||||
font-size: 4em;
|
|
||||||
color: rgb(240, 128, 128);
|
|
||||||
-webkit-text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
|
||||||
-moz-text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
|
||||||
text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
|
||||||
word-spacing: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
font-family: 'Open Sans', sans-serif;
|
|
||||||
font-size: 1.4em;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #222;
|
|
||||||
text-shadow: 0 0 40px #fff, 0 0 30px #fff, 0 0 20px #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container {
|
|
||||||
position: absolute;
|
|
||||||
top: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
background: url('');
|
|
||||||
background-size: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wrapper {
|
|
||||||
width: 100%;
|
|
||||||
min-height: 100%;
|
|
||||||
height: auto;
|
|
||||||
display: table;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
display: table-cell;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
|
|
||||||
.item {
|
|
||||||
width: auto;
|
|
||||||
height: auto;
|
|
||||||
margin: 0 auto;
|
|
||||||
text-align: center;
|
|
||||||
padding: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 800px) {
|
|
||||||
h1 {
|
|
||||||
font-size: 6em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
font-size: 1.6em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 320px) {
|
|
||||||
h1 {
|
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
font-size: 1.2em;
|
|
||||||
}
|
|
||||||
}
|
|
73
index.html
73
index.html
@ -5,7 +5,78 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<title>Please Enable php OR/AND apache mod_rewrite</title>
|
<title>Please Enable php OR/AND apache mod_rewrite</title>
|
||||||
<link rel="stylesheet" href="index.css">
|
<style>
|
||||||
|
@import url(https://fonts.googleapis.com/css?family=Montserrat);
|
||||||
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin: 0;
|
||||||
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
font-size: 4em;
|
||||||
|
color: rgb(240, 128, 128);
|
||||||
|
-webkit-text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
||||||
|
-moz-text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
||||||
|
text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
||||||
|
word-spacing: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 1.4em;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #222;
|
||||||
|
text-shadow: 0 0 40px #fff, 0 0 30px #fff, 0 0 20px #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
background: url('');
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 100%;
|
||||||
|
height: auto;
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item {
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 800px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 320px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!--
|
<!--
|
||||||
|
73
index.php
73
index.php
@ -5,7 +5,78 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<title>Please Enable apache mod_rewrite</title>
|
<title>Please Enable apache mod_rewrite</title>
|
||||||
<link rel="stylesheet" href="index.css">
|
<style>
|
||||||
|
@import url(https://fonts.googleapis.com/css?family=Montserrat);
|
||||||
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin: 0;
|
||||||
|
font-family: 'Montserrat', sans-serif;
|
||||||
|
font-size: 4em;
|
||||||
|
color: rgb(240, 128, 128);
|
||||||
|
-webkit-text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
||||||
|
-moz-text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
||||||
|
text-shadow: 0 2px 1px rgba(240, 128, 128, 0.6), 0 0 2px rgba(240, 128, 128, 0.7);
|
||||||
|
word-spacing: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-family: 'Open Sans', sans-serif;
|
||||||
|
font-size: 1.4em;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #222;
|
||||||
|
text-shadow: 0 0 40px #fff, 0 0 30px #fff, 0 0 20px #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
background: url('');
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 100%;
|
||||||
|
height: auto;
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item {
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
margin: 0 auto;
|
||||||
|
text-align: center;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 800px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 320px) {
|
||||||
|
h1 {
|
||||||
|
font-size: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!--
|
<!--
|
||||||
|
Loading…
x
Reference in New Issue
Block a user