-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
74 lines (65 loc) · 1.19 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
body{
font-family: 'Nunito', sans-serif;
}
.info{
border: 1px solid grey;
border-radius: 5px;
width: 300px;
padding: 10px;
text-align: justify;
background-color: pink;
position: absolute;
top: 30vh;
left: calc(50% - 160px);
user-select: none;
display: none;
}
.show-info{
display: initial;
}
canvas{
cursor: pointer;
border: 2px solid #000e8e;
}
#source{
display: none;
}
.wrapper{
display: flex;
justify-content: space-around;
user-select: none;
height: 30px;
}
.wrapper > div{
border: 2px solid #585858;
text-align: center;
line-height: 0;
margin-top: 10px;
padding: 10px 15px;
border-radius: 50px;
cursor: pointer;
}
.wrapper > p{
margin-top: 10px;
font-weight: bold;
}
@media only screen and (max-width: 700px) {
.wrapper{
display: inline;
}
.wrapper > div{
width: 50%;
margin: 10px auto;
}
.wrapper > p{
width: 50%;
text-align: center;
margin: 10px auto;
}
/* .info{
top: 20vh;
left: 5vw;
width: 300px;
} */
}