summaryrefslogtreecommitdiff
path: root/style.css
blob: 8866db507dd347ee98af9ffd6da9af8f5358cde7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
body {
    background: linear-gradient(60deg, skyblue, 70%, blue) no-repeat fixed;
    background-size: cover;
    overflow: hidden;
}

canvas {
    background-color: aliceblue;
    border-radius: 20px;
}

#instructions {
    position: absolute;
    left: 20px;
    border: 3px dashed orange;
    padding: 4px
}

#instructions:hover {
    display: none;
}