Skip to content

Commit

Permalink
deploying gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
oliyh committed Mar 6, 2020
1 parent da4c128 commit ff95b50
Show file tree
Hide file tree
Showing 3 changed files with 1,109 additions and 847 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ pom.xml.asc
.hg/
/figwheel_server.log
/resources/public/js
/dev-resources/public/*/js
/dev-resources/public/*/js
/dist
31 changes: 31 additions & 0 deletions dist/css/re-learn.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,37 @@
border-bottom-color: rgba(0, 0, 0, 0.8);
}

/* toast */

.toast {
position: fixed;
bottom: 0;
left: 50%;
transform: translateX(-50%);
background-color: rgba(0, 0, 0, 0.8);
color: white;
padding: 1em;
z-index: 10000;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}

.toast button {
margin-left: 4px;
padding: 4px;
cursor: pointer;
border: none;
color: white;
}

.toast button.accept {
background-color: rgb(255,64,129);
}

.toast button.dismiss {
background-color: rgba(0, 0, 0, 0.4);
}

/* tutorial context */

.context-container {
Expand Down
Loading

0 comments on commit ff95b50

Please sign in to comment.