forked from leafo/scssphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmixins.css
More file actions
93 lines (75 loc) · 1.61 KB
/
mixins.css
File metadata and controls
93 lines (75 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
div {
color: blue;
color: red; }
div pre {
height: 200px; }
span {
color: blue; }
span div {
height: 20px; }
html {
height: 43px; }
del {
height: 20px; }
div {
color: white;
color: blue;
color: white; }
div {
background-image: linear-gradient(left top, red, green); }
div {
-moz-box-shadow: 10px 10px 5px #888;
-webkit-box-shadow: 10px 10px 5px #888;
box-shadow: 10px 10px 5px #888;
-moz-box-shadow: inset 10px 10px #888, -10px -10px #f4f4f4;
-webkit-box-shadow: inset 10px 10px #888, -10px -10px #f4f4f4;
box-shadow: inset 10px 10px #888, -10px -10px #f4f4f4; }
div p {
color: red;
color: blue; }
div p .class {
color: red; }
div p .class div {
height: 20px; }
div p div {
height: 20px; }
div p .top {
top: 0; }
div p .top div {
color: red; }
div.mixin-content-simple {
color: red; }
div.mixin-content-with-arg {
background: blue;
color: red; }
div.mixin-content-with-arg {
background: purple;
height: 20px; }
div.mixin-content-simple {
height: 43px; }
div.mixin-content-simple {
color: orange; }
div.mixin-content-simple div {
height: 20px; }
div.mixin-content-with-arg {
background: purple;
height: 43px; }
div.mixin-content-with-arg {
background: purple;
color: orange; }
div.mixin-content-with-arg div {
height: 20px; }
#please-wait {
background: url(/images/logo.png);
position: absolute;
top: 1em;
right: 0;
bottom: 3em;
left: 4em; }
div.parameter-name-scope {
-webkit-transform: translateX(50px); }
@-webkit-keyframes change-color {
0% {
color: green; }
100% {
color: red; } }