-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdemo.scss
125 lines (102 loc) · 1.55 KB
/
demo.scss
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import "sass/main";
body {
background: #eee;
color: #444;
font-family: Helvetica, Arial, sans-serif;
}
.demo-wrap {
background: white;
border-radius: 5px;
max-width: 600px;
padding: 10px 50px 30px;
margin: 50px auto;
}
h1 {
color: coral;
font-family: 'Pacifico', cursive;
font-size: 50px;
}
h2 {
margin-top: 40px;
}
h3 {
margin-top: 30px;
}
p {
line-height: 25px;
}
a {
color: coral;
}
code, pre {
background-color: #ffe5dc;
border-radius: 3px;
border: 1px solid #ffb296;
font-size: 1.1em;
}
code {
padding: 0 5px;
}
pre {
padding: 5px;
word-wrap: break-word;
}
fieldset {
border: none;
padding: 0 0 8px 0;
margin: 0;
}
.mixin-list {
line-height: 25px;
}
.sass-demo {
padding: 5px;
position: relative;
margin-top: 30px;
&::before {
content: 'demo.scss';
position: absolute;
top: -20px;
color: gray;
font-family: sans-serif;
font-size: 10px;
font-style: italic;
}
}
@media screen and (max-width: 640px) {
.demo-wrap {
padding: 10px 20px 30px;
margin: 20px 10px;
}
}
input[type=text],
input[type=url],
input[type=email],
input[type=password],
input[type=number] {
@include sassy-text;
}
textarea {
@include sassy-textarea;
}
input[type=search] {
@include sassy-search;
}
input[type=checkbox] {
@include sassy-checkbox;
}
input[type=radio] {
@include sassy-radio;
}
.select-wrap {
@include sassy-select;
}
select[multiple] {
@include sassy-select-multiple;
}
input[type=submit],
input[type=button],
button {
@include sassy-button;
color: white;
}