-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
executable file
·64 lines (52 loc) · 1.32 KB
/
style.css
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
body{
margin: 0 auto;
padding: 0 4em 0 0;
max-width: 45em;
min-width: 32em;
font-family: Georgia, Times, serif;
background: rgb(228, 245, 241);
color: rgb(82, 71, 66);
}
h1{
margin: 1rem auto 1rem;
text-align: center;
font-family: kaushan-script;
font-size: 7.2em;
}
p {
font-size: 1.1em;
line-height: 1.6;
padding-left: 8em;
}
.coffee{
-webkit-shape-outside: circle(50% at 50% 50%) border-box;
-webkit-shape-margin: 1.5em;
shape-outside: circle(50% at 50% 50%) border-box;
shape-margin: 1.5em;
margin: 1.5em;
width: 380px;
height: 380px;
float: left;
}
.spoon{
-webkit-shape-outside: polygon(30px 438px, 11px 408px, 15px 361px, 36px 310px, 84px 281px, 112px 254px, 218px 3px, 286px 38px, 151px 270px, 145px 307px, 156px 363px, 128px 420px, 102px 444px, 66px 453px);
-webkit-shape-margin: 0.5em;
shape-outside: polygon(30px 438px, 11px 408px, 15px 361px, 36px 310px, 84px 281px, 112px 254px, 218px 3px, 286px 38px, 151px 270px, 145px 307px, 156px 363px, 128px 420px, 102px 444px, 66px 453px);
shape-margin: 0.5em;
-webkit-transform: scale(1, -1);
transform: scale(1, -1);
margin: 1em -10% 1em 1em;
width: 250px;
height: 420px;
float: right;
}
.credits{
margin: 2em 0;
font-style: italic;
}
.credits a{
color: inherit;
}
.credits a:hover{
text-decoration: none;
}