Update the order of CSS properties
This commit is contained in:
68
index.php
68
index.php
@@ -24,7 +24,7 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|||||||
OR OTHER DEALINGS IN THE SOFTWARE.
|
OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require_once(__DIR__.'/include/init.inc.php');
|
require_once __DIR__.'/include/init.inc.php';
|
||||||
$block = new Block();
|
$block = new Block();
|
||||||
$current = $block->current();
|
$current = $block->current();
|
||||||
?>
|
?>
|
||||||
@@ -51,13 +51,6 @@ $current = $block->current();
|
|||||||
|
|
||||||
html {
|
html {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
|
||||||
|
|
||||||
*, ::after, ::before {
|
|
||||||
box-sizing: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
@@ -72,15 +65,16 @@ $current = $block->current();
|
|||||||
text-size-adjust: 100%;
|
text-size-adjust: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
*, ::after, ::before {
|
||||||
|
box-sizing: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
font-family: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
color: #4a4a4a;
|
color: #4a4a4a;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@@ -98,29 +92,8 @@ $current = $block->current();
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
margin: 0 auto;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
margin: 0 auto;
|
||||||
|
|
||||||
@media screen and (min-width: 1088px) {
|
|
||||||
.container {
|
|
||||||
max-width: 960px;
|
|
||||||
width: 960px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 1280px) {
|
|
||||||
.container {
|
|
||||||
max-width: 1152px;
|
|
||||||
width: 1152px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (min-width: 1472px) {
|
|
||||||
.container {
|
|
||||||
max-width: 1344px;
|
|
||||||
width: 1344px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.field.is-grouped {
|
.field.is-grouped {
|
||||||
@@ -220,9 +193,6 @@ $current = $block->current();
|
|||||||
|
|
||||||
.title {
|
.title {
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
}
|
|
||||||
|
|
||||||
.title {
|
|
||||||
color: #363636;
|
color: #363636;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
@@ -280,7 +250,31 @@ $current = $block->current();
|
|||||||
}
|
}
|
||||||
|
|
||||||
a.is-dark {
|
a.is-dark {
|
||||||
color: white;
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1088px) {
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 960px;
|
||||||
|
width: 960px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1280px) {
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 1152px;
|
||||||
|
width: 1152px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 1472px) {
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 1344px;
|
||||||
|
width: 1344px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
Reference in New Issue
Block a user