-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (36 loc) · 870 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
canvas{
height: 100px;
width: 100px;
border: 2px solid black;
border-radius: 25px;
position: relative;
}
body {
padding-top: 50px;
margin: 0;
display: flex;
/* This centers our sketch horizontally. */
justify-content: center;
/* This centers our sketch vertically. */
/* align-items: center; */
text-align: center !important;
font-size: 45px !important;
}
#buttons{
position: absolute;
padding-top: 300px;
}
.divider{
width:5px;
height:auto;
display:inline-block;
}
body{
background: -webkit-linear-gradient(70deg,#5ac8fa 50%, #ff6464 50%);
background: -o-linear-gradient(70deg, #5ac8fa 50%, 50%);
background: -moz-linear-gradient(70deg, #5ac8fa 50%, #ff6464 50%);
background: linear-gradient(70deg, #5ac8fa 50%, #ff6464 50%);
}
.title{
position: absolute;
}