Commit a3993c0e authored by Pascal Hartig's avatar Pascal Hartig

Remove CSS prefixes

Yay, autoprefixer!
parent 60d2e020
...@@ -11,10 +11,6 @@ body { ...@@ -11,10 +11,6 @@ body {
width: auto; width: auto;
background: #fafafa; background: #fafafa;
color: #353535; color: #353535;
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
-o-font-smoothing: antialiased;
font-smoothing: antialiased; font-smoothing: antialiased;
} }
...@@ -126,29 +122,17 @@ header nav a:not(:last-child) { ...@@ -126,29 +122,17 @@ header nav a:not(:last-child) {
list-style: none; list-style: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
-webkit-columns: 1;
-moz-columns: 1;
-ms-columns: 1;
-o-columns: 1;
columns: 1; columns: 1;
font-size: 17px; font-size: 17px;
} }
.applist li { .applist li {
padding: 10px 0; padding: 10px 0;
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
-ms-column-break-inside: avoid;
-o-column-break-inside: avoid;
column-break-inside: avoid; column-break-inside: avoid;
} }
.applist a { .applist a {
position: relative; /* popover */ position: relative; /* popover */
-webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid;
-ms-column-break-inside: avoid;
-o-column-break-inside: avoid;
column-break-inside: avoid; column-break-inside: avoid;
} }
...@@ -198,7 +182,6 @@ header nav a:not(:last-child) { ...@@ -198,7 +182,6 @@ header nav a:not(:last-child) {
.collapsed { .collapsed {
overflow: hidden; overflow: hidden;
max-height: 0; max-height: 0;
-webkit-transition: max-height 0.7s ease-out;
transition: max-height 0.7s ease-out; transition: max-height 0.7s ease-out;
} }
...@@ -208,7 +191,6 @@ header nav a:not(:last-child) { ...@@ -208,7 +191,6 @@ header nav a:not(:last-child) {
#news-expander:checked ~ .collapsed { #news-expander:checked ~ .collapsed {
max-height: 999px; max-height: 999px;
-webkit-transition: max-height 0.7s ease-in;
transition: max-height 0.7s ease-in; transition: max-height 0.7s ease-in;
} }
...@@ -336,9 +318,6 @@ a.zocial { ...@@ -336,9 +318,6 @@ a.zocial {
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none; user-select: none;
position: relative; position: relative;
border-radius: .3em; border-radius: .3em;
...@@ -346,10 +325,6 @@ a.zocial { ...@@ -346,10 +325,6 @@ a.zocial {
@media (max-width: 480px) { @media (max-width: 480px) {
body .applist { body .applist {
-webkit-columns: auto !important;
-moz-columns: auto !important;
-ms-columns: auto !important;
-o-columns: auto !important;
columns: auto !important; columns: auto !important;
} }
...@@ -381,20 +356,12 @@ a.zocial { ...@@ -381,20 +356,12 @@ a.zocial {
@media (min-width: 480px) { @media (min-width: 480px) {
.applist { .applist {
-webkit-columns: 2;
-moz-columns: 2;
-ms-columns: 2;
-o-columns: 2;
columns: 2; columns: 2;
} }
} }
@media (min-width: 640px) and (max-width: 770px) { @media (min-width: 640px) and (max-width: 770px) {
.applist { .applist {
-webkit-columns: 3;
-moz-columns: 3;
-ms-columns: 3;
-o-columns: 3;
columns: 3; columns: 3;
} }
} }
...@@ -403,10 +370,6 @@ a.zocial { ...@@ -403,10 +370,6 @@ a.zocial {
@media (min-width: 771px) { @media (min-width: 771px) {
.js, .js,
.ctojs { .ctojs {
-webkit-columns: 4;
-moz-columns: 4;
-ms-columns: 4;
-o-columns: 4;
columns: 4; columns: 4;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment