-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (104 loc) · 1.83 KB
/
style.css
File metadata and controls
125 lines (104 loc) · 1.83 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
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
body {
font-family: sans-serif;
}
.tag {
background-color: #009b3d;
color: white;
display: flex;
padding: 0.5rem;
padding-left: 1em;
padding-right: 1em;
text-align: center;
border-radius: 1rem;
white-space: nowrap;
margin: 0.25rem;
}
.tag-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.headline {
font-size: 2em;
font-weight: 700;
}
.center-figure {
display: flex;
justify-content: center;
}
code {
font-family: monospace;
font-size: 1.5em;
font-weight: 700;
}
code.scratch-block,
code.scratch-move-block,
code.scratch-looks-block,
code.scratch-control-block,
code.scratch-operators-block,
code.scratch-variables-block,
code.scratch-events-block {
background-color: #009b3d;
color: white;
display: inline-block;
padding: 0.5rem;
padding-left: 1em;
padding-right: 1em;
text-align: center;
border-radius: 1rem;
white-space: nowrap;
margin: 0.25rem;
}
code.scratch-move-block {
background-color: #4C97FF;
}
code.scratch-looks-block {
background-color: #9966FF;
}
code.scratch-events-block {
background-color: #FFBF00;
}
code.scratch-control-block {
background-color: #FFAB19;
}
code.scratch-operators-block {
background-color: #59C059;
}
code.scratch-variables-block {
background-color: #FF8C1A;
}
figure {
border: 1px solid;
}
figure > img {
border: 10px solid white;
}
figure > figcaption {
text-align: right;
border: 10px solid white;
}
header {
font-weight: 700;
text-align: center;
padding: 3rem;
color: white;
background-color: #009b3d;
}
header > h1 {
font-size: 2rem;
}
section {
display: flex;
margin: 1rem;
}
nav {
flex: 1;
margin: 1rem;
}
nav > ul {
list-style-type: none;
}
article {
flex: 3;
margin: 1rem;
}