added info bubble
This commit is contained in:
parent
8d124c01d9
commit
34453cff32
5 changed files with 70 additions and 5 deletions
|
@ -63,6 +63,10 @@ label {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
section {
|
||||
display: none;
|
||||
}
|
||||
|
@ -197,6 +201,23 @@ canvas {
|
|||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.info {
|
||||
border: 3px solid black;
|
||||
background: white;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 5px black;
|
||||
color: black;
|
||||
padding: 0 1em;
|
||||
}
|
||||
|
||||
.info.swipe {
|
||||
width: 60%;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 15%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
#settings ul {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
|
|
Reference in a new issue