first commit
This commit is contained in:
18
html/css/.ipynb_checkpoints/font-checkpoint.css
Normal file
18
html/css/.ipynb_checkpoints/font-checkpoint.css
Normal file
@@ -0,0 +1,18 @@
|
||||
/* lato-700 - latin_latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Raleway Bold'), local('Raleway-Bold'),
|
||||
url('./fonts/raleway-v22-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
||||
url('./fonts/raleway-v22-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
/* lato-regular - latin_latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Raleway Regular'), local('Raleway-Regular'),
|
||||
url('./fonts/raleway-v22-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
||||
url('./fonts/raleway-v22-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
52
html/css/.ipynb_checkpoints/intro-checkpoint.css
Normal file
52
html/css/.ipynb_checkpoints/intro-checkpoint.css
Normal file
@@ -0,0 +1,52 @@
|
||||
body {
|
||||
font-family: 'Raleway', 'sans-serif';
|
||||
color: #38DAFF;
|
||||
background: #222;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.item-1,
|
||||
.item-2,
|
||||
.item-3 {
|
||||
position: relative;
|
||||
display: block;
|
||||
top: 1em;
|
||||
|
||||
width: 60%;
|
||||
|
||||
font-size: 5.5em;
|
||||
|
||||
animation-duration: 14s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
.item-1{
|
||||
animation-name: anim-1;
|
||||
}
|
||||
|
||||
.item-2{
|
||||
animation-name: anim-2;
|
||||
}
|
||||
|
||||
.item-3{
|
||||
animation-name: anim-3;
|
||||
}
|
||||
|
||||
@keyframes anim-1 {
|
||||
0%, 8.3% { left: -100%; opacity: 0; }
|
||||
8.3%,25% { left: 25%; opacity: 1; }
|
||||
33.33%, 100% { left: 110%; opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes anim-2 {
|
||||
0%, 33.33% { left: -100%; opacity: 0; }
|
||||
41.63%, 58.29% { left: 25%; opacity: 1; }
|
||||
66.66%, 100% { left: 110%; opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes anim-3 {
|
||||
0%, 66.66% { left: -100%; opacity: 0; }
|
||||
74.96%, 91.62% { left: 25%; opacity: 1; }
|
||||
100% { left: 110%; opacity: 0; }
|
||||
}
|
@@ -0,0 +1,17 @@
|
||||
.txtslider {
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.txtslider ul {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.txtslider ul li {
|
||||
width: 100%;
|
||||
display: none;
|
||||
}
|
155
html/css/.ipynb_checkpoints/slideshow-checkpoint.css
Normal file
155
html/css/.ipynb_checkpoints/slideshow-checkpoint.css
Normal file
@@ -0,0 +1,155 @@
|
||||
*{box-sizing: border-box; -webkit-box-sizing: border-box; }
|
||||
html, body { height: 100%; }
|
||||
body { margin: 0; font: 16px/1.3 sans-serif; }
|
||||
|
||||
/*
|
||||
PURE RESPONSIVE CSS3 SLIDESHOW GALLERY by Roko C. buljan
|
||||
http://stackoverflow.com/a/34696029/383904
|
||||
*/
|
||||
|
||||
.CSSgal {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 75%; /* Or set a fixed height */
|
||||
}
|
||||
|
||||
/* SLIDER */
|
||||
|
||||
.CSSgal .slider {
|
||||
height: 100%;
|
||||
white-space: nowrap;
|
||||
font-size: 0;
|
||||
transition: 0.8s;
|
||||
}
|
||||
|
||||
/* SLIDES */
|
||||
|
||||
.CSSgal .slider > * {
|
||||
font-size: 1rem;
|
||||
display: inline-block;
|
||||
white-space: normal;
|
||||
vertical-align: top;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: none 50% no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
/* PREV/NEXT, CONTAINERS & ANCHORS */
|
||||
|
||||
.CSSgal .prevNext {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.CSSgal .prevNext > div+div {
|
||||
visibility: hidden; /* Hide all but first P/N container */
|
||||
}
|
||||
|
||||
.CSSgal .prevNext a {
|
||||
background: #fff;
|
||||
position: absolute;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
line-height: 60px; /* If you want to place numbers */
|
||||
text-align: center;
|
||||
opacity: 0.7;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
left: 0;
|
||||
}
|
||||
.CSSgal .prevNext a:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.CSSgal .prevNext a+a {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
/* NAVIGATION */
|
||||
|
||||
.CSSgal .bullets {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
bottom: 0;
|
||||
padding: 10px 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.CSSgal .bullets > a {
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
background: rgba(255, 255, 255, 1);
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
.CSSgal .bullets > a+a {
|
||||
background: rgba(255, 255, 255, 0.5); /* Dim all but first */
|
||||
}
|
||||
.CSSgal .bullets > a:hover {
|
||||
background: rgba(255, 255, 255, 0.7) !important;
|
||||
}
|
||||
|
||||
/* NAVIGATION BUTTONS */
|
||||
/* ALL: */
|
||||
.CSSgal >s:target ~ .bullets >* { background: rgba(255, 255, 255, 0.5);}
|
||||
/* ACTIVE */
|
||||
#s1:target ~ .bullets >*:nth-child(1) {background: rgba(255, 255, 255, 1);}
|
||||
#s2:target ~ .bullets >*:nth-child(2) {background: rgba(255, 255, 255, 1);}
|
||||
#s3:target ~ .bullets >*:nth-child(3) {background: rgba(255, 255, 255, 1);}
|
||||
#s4:target ~ .bullets >*:nth-child(4) {background: rgba(255, 255, 255, 1);}
|
||||
#s5:target ~ .bullets >*:nth-child(5) {background: rgba(255, 255, 255, 1);}
|
||||
/* More slides? Add here more rules */
|
||||
|
||||
/* PREV/NEXT CONTAINERS VISIBILITY */
|
||||
/* ALL: */
|
||||
.CSSgal >s:target ~ .prevNext >* { visibility: hidden;}
|
||||
/* ACTIVE: */
|
||||
#s1:target ~ .prevNext >*:nth-child(1) {visibility: visible;}
|
||||
#s2:target ~ .prevNext >*:nth-child(2) {visibility: visible;}
|
||||
#s3:target ~ .prevNext >*:nth-child(3) {visibility: visible;}
|
||||
#s4:target ~ .prevNext >*:nth-child(4) {visibility: visible;}
|
||||
#s5:target ~ .prevNext >*:nth-child(4) {visibility: visible;}
|
||||
/* More slides? Add here more rules */
|
||||
|
||||
/* SLIDER ANIMATION POSITIONS */
|
||||
|
||||
#s1:target ~ .slider {transform: translateX( 0%); -webkit-transform: translateX( 0%);}
|
||||
#s2:target ~ .slider {transform: translateX(-100%); -webkit-transform: translateX(-100%);}
|
||||
#s3:target ~ .slider {transform: translateX(-200%); -webkit-transform: translateX(-200%);}
|
||||
#s4:target ~ .slider {transform: translateX(-300%); -webkit-transform: translateX(-300%);}
|
||||
#s5:target ~ .slider {transform: translateX(-300%); -webkit-transform: translateX(-300%);}
|
||||
/* More slides? Add here more rules */
|
||||
|
||||
|
||||
/* YOU'RE THE DESIGNER!
|
||||
____________________
|
||||
All above was mainly to get it working :)
|
||||
CSSgal CUSTOM STYLES / OVERRIDES HERE: */
|
||||
|
||||
.CSSgal{
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
.CSSgal .slider h2 {
|
||||
margin-top: 40vh;
|
||||
font-weight: 200;
|
||||
letter-spacing: -0.06em;
|
||||
word-spacing: 0.2em;
|
||||
font-size: 3em;
|
||||
}
|
||||
.CSSgal a {
|
||||
border-radius: 50%;
|
||||
margin: 0 3px;
|
||||
color: rgba(0,0,0,0.8);
|
||||
text-decoration: none;
|
||||
}
|
41
html/css/.ipynb_checkpoints/vid-checkpoint.css
Normal file
41
html/css/.ipynb_checkpoints/vid-checkpoint.css
Normal file
@@ -0,0 +1,41 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
#myVideo {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.content {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
color: #f1f1f1;
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
#myBtn {
|
||||
width: 200px;
|
||||
font-size: 18px;
|
||||
padding: 10px;
|
||||
border: none;
|
||||
background: #000;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#myBtn:hover {
|
||||
background: #ddd;
|
||||
color: black;
|
||||
}
|
11222
html/css/bootstrap.css
vendored
Normal file
11222
html/css/bootstrap.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
html/css/bootstrap.min.css
vendored
Normal file
7
html/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
18
html/css/font.css
Normal file
18
html/css/font.css
Normal file
@@ -0,0 +1,18 @@
|
||||
/* lato-700 - latin_latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Raleway Bold'), local('Raleway-Bold'),
|
||||
url('./fonts/raleway-v22-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
||||
url('./fonts/raleway-v22-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
||||
/* lato-regular - latin_latin-ext */
|
||||
@font-face {
|
||||
font-family: 'Raleway';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Raleway Regular'), local('Raleway-Regular'),
|
||||
url('./fonts/raleway-v22-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
|
||||
url('./fonts/raleway-v22-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
|
||||
}
|
52
html/css/intro.css
Normal file
52
html/css/intro.css
Normal file
@@ -0,0 +1,52 @@
|
||||
body {
|
||||
font-family: 'Raleway', 'sans-serif';
|
||||
color: #38DAFF;
|
||||
background: #222;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.item-1,
|
||||
.item-2,
|
||||
.item-3 {
|
||||
position: relative;
|
||||
display: block;
|
||||
top: 1em;
|
||||
|
||||
width: 60%;
|
||||
|
||||
font-size: 5.5em;
|
||||
|
||||
animation-duration: 14s;
|
||||
animation-timing-function: ease-in-out;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
.item-1{
|
||||
animation-name: anim-1;
|
||||
}
|
||||
|
||||
.item-2{
|
||||
animation-name: anim-2;
|
||||
}
|
||||
|
||||
.item-3{
|
||||
animation-name: anim-3;
|
||||
}
|
||||
|
||||
@keyframes anim-1 {
|
||||
0%, 8.3% { left: -100%; opacity: 0; }
|
||||
8.3%,25% { left: 25%; opacity: 1; }
|
||||
33.33%, 100% { left: 110%; opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes anim-2 {
|
||||
0%, 33.33% { left: -100%; opacity: 0; }
|
||||
41.63%, 58.29% { left: 25%; opacity: 1; }
|
||||
66.66%, 100% { left: 110%; opacity: 0; }
|
||||
}
|
||||
|
||||
@keyframes anim-3 {
|
||||
0%, 66.66% { left: -100%; opacity: 0; }
|
||||
74.96%, 91.62% { left: 25%; opacity: 1; }
|
||||
100% { left: 110%; opacity: 0; }
|
||||
}
|
17
html/css/jquery.simpleTxtSlider.css
Normal file
17
html/css/jquery.simpleTxtSlider.css
Normal file
@@ -0,0 +1,17 @@
|
||||
.txtslider {
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.txtslider ul {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.txtslider ul li {
|
||||
width: 100%;
|
||||
display: none;
|
||||
}
|
155
html/css/slideshow.css
Normal file
155
html/css/slideshow.css
Normal file
@@ -0,0 +1,155 @@
|
||||
*{box-sizing: border-box; -webkit-box-sizing: border-box; }
|
||||
html, body { height: 100%; }
|
||||
body { margin: 0; font: 16px/1.3 sans-serif; }
|
||||
|
||||
/*
|
||||
PURE RESPONSIVE CSS3 SLIDESHOW GALLERY by Roko C. buljan
|
||||
http://stackoverflow.com/a/34696029/383904
|
||||
*/
|
||||
|
||||
.CSSgal {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
height: 75%; /* Or set a fixed height */
|
||||
}
|
||||
|
||||
/* SLIDER */
|
||||
|
||||
.CSSgal .slider {
|
||||
height: 100%;
|
||||
white-space: nowrap;
|
||||
font-size: 0;
|
||||
transition: 0.8s;
|
||||
}
|
||||
|
||||
/* SLIDES */
|
||||
|
||||
.CSSgal .slider > * {
|
||||
font-size: 1rem;
|
||||
display: inline-block;
|
||||
white-space: normal;
|
||||
vertical-align: top;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background: none 50% no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
/* PREV/NEXT, CONTAINERS & ANCHORS */
|
||||
|
||||
.CSSgal .prevNext {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.CSSgal .prevNext > div+div {
|
||||
visibility: hidden; /* Hide all but first P/N container */
|
||||
}
|
||||
|
||||
.CSSgal .prevNext a {
|
||||
background: #fff;
|
||||
position: absolute;
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
line-height: 60px; /* If you want to place numbers */
|
||||
text-align: center;
|
||||
opacity: 0.7;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
-webkit-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
left: 0;
|
||||
}
|
||||
.CSSgal .prevNext a:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.CSSgal .prevNext a+a {
|
||||
left: auto;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
/* NAVIGATION */
|
||||
|
||||
.CSSgal .bullets {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
bottom: 0;
|
||||
padding: 10px 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.CSSgal .bullets > a {
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
background: rgba(255, 255, 255, 1);
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
.CSSgal .bullets > a+a {
|
||||
background: rgba(255, 255, 255, 0.5); /* Dim all but first */
|
||||
}
|
||||
.CSSgal .bullets > a:hover {
|
||||
background: rgba(255, 255, 255, 0.7) !important;
|
||||
}
|
||||
|
||||
/* NAVIGATION BUTTONS */
|
||||
/* ALL: */
|
||||
.CSSgal >s:target ~ .bullets >* { background: rgba(255, 255, 255, 0.5);}
|
||||
/* ACTIVE */
|
||||
#s1:target ~ .bullets >*:nth-child(1) {background: rgba(255, 255, 255, 1);}
|
||||
#s2:target ~ .bullets >*:nth-child(2) {background: rgba(255, 255, 255, 1);}
|
||||
#s3:target ~ .bullets >*:nth-child(3) {background: rgba(255, 255, 255, 1);}
|
||||
#s4:target ~ .bullets >*:nth-child(4) {background: rgba(255, 255, 255, 1);}
|
||||
#s5:target ~ .bullets >*:nth-child(5) {background: rgba(255, 255, 255, 1);}
|
||||
/* More slides? Add here more rules */
|
||||
|
||||
/* PREV/NEXT CONTAINERS VISIBILITY */
|
||||
/* ALL: */
|
||||
.CSSgal >s:target ~ .prevNext >* { visibility: hidden;}
|
||||
/* ACTIVE: */
|
||||
#s1:target ~ .prevNext >*:nth-child(1) {visibility: visible;}
|
||||
#s2:target ~ .prevNext >*:nth-child(2) {visibility: visible;}
|
||||
#s3:target ~ .prevNext >*:nth-child(3) {visibility: visible;}
|
||||
#s4:target ~ .prevNext >*:nth-child(4) {visibility: visible;}
|
||||
#s5:target ~ .prevNext >*:nth-child(4) {visibility: visible;}
|
||||
/* More slides? Add here more rules */
|
||||
|
||||
/* SLIDER ANIMATION POSITIONS */
|
||||
|
||||
#s1:target ~ .slider {transform: translateX( 0%); -webkit-transform: translateX( 0%);}
|
||||
#s2:target ~ .slider {transform: translateX(-100%); -webkit-transform: translateX(-100%);}
|
||||
#s3:target ~ .slider {transform: translateX(-200%); -webkit-transform: translateX(-200%);}
|
||||
#s4:target ~ .slider {transform: translateX(-300%); -webkit-transform: translateX(-300%);}
|
||||
#s5:target ~ .slider {transform: translateX(-300%); -webkit-transform: translateX(-300%);}
|
||||
/* More slides? Add here more rules */
|
||||
|
||||
|
||||
/* YOU'RE THE DESIGNER!
|
||||
____________________
|
||||
All above was mainly to get it working :)
|
||||
CSSgal CUSTOM STYLES / OVERRIDES HERE: */
|
||||
|
||||
.CSSgal{
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
.CSSgal .slider h2 {
|
||||
margin-top: 40vh;
|
||||
font-weight: 200;
|
||||
letter-spacing: -0.06em;
|
||||
word-spacing: 0.2em;
|
||||
font-size: 3em;
|
||||
}
|
||||
.CSSgal a {
|
||||
border-radius: 50%;
|
||||
margin: 0 3px;
|
||||
color: rgba(0,0,0,0.8);
|
||||
text-decoration: none;
|
||||
}
|
22
html/css/typewriter.css
Normal file
22
html/css/typewriter.css
Normal file
@@ -0,0 +1,22 @@
|
||||
.typewriter h1 {
|
||||
overflow: hidden; /* Ensures the content is not revealed until the animation */
|
||||
border-right: .15em solid orange; /* The typwriter cursor */
|
||||
white-space: nowrap; /* Keeps the content on a single line */
|
||||
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
|
||||
letter-spacing: .15em; /* Adjust as needed */
|
||||
animation:
|
||||
typing 3.5s steps(40, end),
|
||||
blink-caret .75s step-end infinite;
|
||||
}
|
||||
|
||||
/* The typing effect */
|
||||
@keyframes typing {
|
||||
from { width: 0 }
|
||||
to { width: 100% }
|
||||
}
|
||||
|
||||
/* The typewriter cursor effect */
|
||||
@keyframes blink-caret {
|
||||
from, to { border-color: transparent }
|
||||
50% { border-color: orange; }
|
||||
}
|
41
html/css/vid.css
Normal file
41
html/css/vid.css
Normal file
@@ -0,0 +1,41 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: Arial;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
#myVideo {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-width: 100%;
|
||||
min-height: 100%;
|
||||
}
|
||||
|
||||
.content {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
color: #f1f1f1;
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
#myBtn {
|
||||
width: 200px;
|
||||
font-size: 18px;
|
||||
padding: 10px;
|
||||
border: none;
|
||||
background: #000;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#myBtn:hover {
|
||||
background: #ddd;
|
||||
color: black;
|
||||
}
|
Reference in New Issue
Block a user