main_web/tictac/tictac.css
Chris Edwards 8fb28b1f95
2021-02-21 10:02:34 -05:00

65 lines
1.4 KiB
CSS

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%);
}
td{
border: 3px solid black;
height: 100px;
width: 100px;
}
#game {
background-color:#ce4949;
text-align: center;
box-shadow: 5px 5px 5px #888888;
height: 300px;
width: 300px;
border-collapse: collapse;
/* color:#1A1A1A; */
}
tr{
}
#game:hover{
cursor: pointer;
}
#button {
text-align: center
}
#score {
text-align: center;
color: #1A1A1A
}
#level {
text-align: center
}
.t {
color: white;
}
.t2 {
}
.cells{
text-align: center;
}
#tic{
display: flex;
justify-content: center;
}
main{
margin: auto;
display: flex;
justify-content: center;
flex-direction: column;
}
pre{
text-align: center;
}
/* style=" color:#1A1A1A" border="3" cellspacing="10" cellpadding="30" */