app/assets/stylesheets/timequake/universal.scss in timequake-1.0.9 vs app/assets/stylesheets/timequake/universal.scss in timequake-2.0.0
- old
+ new
@@ -1,26 +1,37 @@
$main-overflow: hidden !default;
$section-padding-desktop: 2rem 0 !default;
$section-padding-mobile: 1rem 0 !default;
+* {
+ box-sizing: border-box;
+ padding: 0;
+ margin: 0;
+}
+
main { overflow: $main-overflow; }
section {
padding: $section-padding-mobile;
- @include breakpoint('large') {
+ @media (min-width: $large) {
padding: $section-padding-desktop;
}
}
a {
color: inherit;
text-decoration: none;
+ transition: 300ms;
}
ul,
ol {
&.no-style { list-style-type: none; }
+ &.circle { list-style-type: circle; }
+ &.square { list-style-type: square; }
+ &.upper-roman { list-style-type: upper-roman; }
+ &.lower-alpha { list-style-type: lower-alpha; }
}
img {
display: inline-block;
vertical-align: middle;