main_web/tictac/tictac.css
Christopher Edwards 2df8ed0300 add files
2020-10-31 10:51:26 -04:00

34 lines
1.0 KiB
CSS
Executable File

body {
background: -webkit-linear-gradient(45deg, hsla(0, 0%, 97%, 1) 0%, hsla(0, 0%, 97%, 0) 70%), -webkit-linear-gradient(315deg, hsla(0, 0%, 38%, 1) 10%, hsla(0, 0%, 38%, 0) 80%), -webkit-linear-gradient(225deg, hsla(0, 0%, 63%, 1) 10%, hsla(0, 0%, 63%, 0) 80%), -webkit-linear-gradient(135deg, hsla(0, 0%, 29%, 1) 100%, hsla(0, 0%, 29%, 0) 70%);
background: linear-gradient(45deg, hsla(0, 0%, 97%, 1) 0%, hsla(0, 0%, 97%, 0) 70%), linear-gradient(135deg, hsla(0, 0%, 38%, 1) 10%, hsla(0, 0%, 38%, 0) 80%), linear-gradient(225deg, hsla(0, 0%, 63%, 1) 10%, hsla(0, 0%, 63%, 0) 80%), linear-gradient(315deg, hsla(0, 0%, 29%, 1) 100%, hsla(0, 0%, 29%, 0) 70%);
}
#game {
background-color: #E60000;
text-align: center;
box-shadow: 5px 5px 5px #888888;
-webkit-animation: rubberBand 1s;
/* Chrome, Safari, Opera */
animation: rubberBand 1s;
}
#button {
text-align: center
}
#score {
text-align: center;
color: #1A1A1A
}
#level {
text-align: center
}
.t {
color: white;
}
.t2 {
color: red;
}