Skip to content

Commit cde40cc

Browse files
committed
process
1 parent 7129bab commit cde40cc

7 files changed

+57
-9
lines changed

1.html

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<link rel="stylesheet" href="wide-classes.css">
5+
<meta charset="UTF-8">
6+
<title>Title</title>
7+
<style>
8+
/* 0123456789abcdef rgb */
9+
body {
10+
background: #252525;
11+
font-size: 30px;
12+
}
13+
p, span{
14+
margin: 0;
15+
}
16+
.o{
17+
width: 600px;
18+
height: 600px;
19+
background: #f58;
20+
}
21+
.o2{
22+
width: 60px;
23+
height: 60px;
24+
background: #53f8;
25+
}
26+
</style>
27+
</head>
28+
<body>
29+
<div class="o fccc">
30+
<div class="o2 hover-scale-5"></div>
31+
<div class="o2 hover-scale-5"></div>
32+
<div class="o2 hover-scale-5"></div>
33+
</div>
34+
</body>
35+
</html>

classes/filter.sass

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
@for $i from 0 through 20
22
.invert-#{5 * $i}
33
filter: invert((5 * $i) * 1%)
4+
5+
6+
.gray-scale
7+
filter: grayscale(1)

classes/shadow.sass

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@
1111
box-shadow: 0 0 1em #000000a0
1212

1313
.shadow-black-5-90
14-
box-shadow: 0 0 0.5em #000000a0
14+
box-shadow: 0 0 0.5em #000000a0
15+
16+
.bshd-none
17+
box-shadow: none !important

classes/size.sass

+6-6
Original file line numberDiff line numberDiff line change
@@ -43,25 +43,25 @@
4343

4444
@for $i from 0 through 20
4545
.mw-#{50 * $i}px
46-
max-width: #{50 * $i}px
46+
max-width: #{50 * $i}px !important
4747

4848
@for $i from 0 through 20
4949
.mh-#{50 * $i}px
50-
max-height: #{50 * $i}px
50+
max-height: #{50 * $i}px !important
5151

5252
@for $i from 2 through 20
5353
.mw-#{5 * $i}
54-
max-width: #{5 * $i + "%"}
54+
max-width: #{5 * $i + "%"} !important
5555

5656
@for $i from 2 through 20
5757
.mh-#{5 * $i}
58-
max-height: #{5 * $i + "%"}
58+
max-height: #{5 * $i + "%"} !important
5959

6060

6161
@for $i from 2 through 20
6262
.mw-#{5 * $i}vw
63-
max-width: #{5 * $i + "vw"}
63+
max-width: #{5 * $i + "vw"} !important
6464

6565
@for $i from 2 through 20
6666
.mh-#{5 * $i}vh
67-
max-height: #{5 * $i + "vh"}
67+
max-height: #{5 * $i + "vh"} !important

classes/text.sass

+6
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@
2828
.fw-10
2929
font-weight: 1000 !important
3030

31+
.fs-7
32+
font-size: .80 !important
33+
34+
.fs-8
35+
font-size: .65 !important
36+
3137

3238
.fs-09
3339
font-size: 1.85rem

classes/transform.sass

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
transform: scaleX(-1)
33

44
.invert-h
5-
transform: scaleY(-1)
5+
transform: scaleY(-1)

wide-classes.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)