summaryrefslogtreecommitdiffstats
path: root/sass/tests/resources/css/mixins.css
diff options
context:
space:
mode:
Diffstat (limited to 'sass/tests/resources/css/mixins.css')
-rw-r--r--sass/tests/resources/css/mixins.css46
1 files changed, 46 insertions, 0 deletions
diff --git a/sass/tests/resources/css/mixins.css b/sass/tests/resources/css/mixins.css
new file mode 100644
index 0000000000..5c727c193b
--- /dev/null
+++ b/sass/tests/resources/css/mixins.css
@@ -0,0 +1,46 @@
+.main {
+ border: 1px solid black;
+ -webkit-border-radius: 3px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ font-family: arial;
+ font-size: 16px;
+ font-weight: bold;
+}
+
+.main .details {
+ font-size: 14px;
+ font-weight: bold;
+}
+
+.footer {
+ border: 2px solid black;
+ -webkit-border-radius: 10px;
+ -moz-border-radius: 10px;
+ border-radius: 10px;
+}
+
+.header {
+ width: 100%;
+}
+
+.main {
+ width: 100%;
+ height: 100%;
+}
+
+.footer {
+ width: 100%;
+}
+
+@media print {
+ .v-view {
+ overflow: visible;
+ }
+}
+
+font-family: arial;
+
+font-size: 16px;
+
+font-weight: bold; \ No newline at end of file