-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
style.css
76 lines (65 loc) · 865 Bytes
/
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
65
66
67
68
69
70
71
72
73
74
75
76
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 10px;
font-family: "Francois One", sans-serif;
}
#frame {
margin-top: 30px;
width: 100%;
height: 80vh;
overflow: hidden;
border: none;
}
canvas {
border-radius: 8px;
}
h3 {
margin: 10px 0;
color: #ee3f62;
}
a {
color: #ee3f62;
}
a:hover {
color: #24c5a5;
}
ul {
padding: 0;
list-style: none;
line-height: 30px;
}
.site-title {
color: #ee3f62;
}
.wrapper {
max-width: 1000px;
margin: auto;
}
.examples-container {
display: flex;
justify-content: center;
width: 100%;
flex-wrap: wrap;
}
button {
padding: 10px;
border: none;
background-color: #ee3f62;
color: white;
margin: 10px;
cursor: pointer;
border-radius: 3px;
}
button:hover {
background-color: #24c5a5;
}
hr {
border: 1px solid #ee3f62;
}
footer {
padding: 30px 0;
}