mirror of
https://github.com/FranP-code/Tic-Tac-Toe-Game.git
synced 2025-10-12 23:52:39 +00:00
75 lines
950 B
CSS
75 lines
950 B
CSS
html, body {
|
|
|
|
height: 100%;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
}
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
background-color: rgb(221, 121, 121);
|
|
}
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
header h1 {
|
|
|
|
border-bottom: 2px solid #fff;
|
|
|
|
width: 75vw;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
margin: 0;
|
|
padding: 3vh 0px;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 35pt;
|
|
}
|
|
|
|
ul {
|
|
|
|
padding: 2vh 13.8vw;
|
|
}
|
|
|
|
li {
|
|
|
|
color: #fff;
|
|
font-size: 17pt;
|
|
}
|
|
|
|
li a, footer a {
|
|
|
|
color: rgb(31, 94, 189)
|
|
}
|
|
|
|
footer {
|
|
|
|
position: absolute;
|
|
|
|
height: 7vh;
|
|
width: 100%;
|
|
|
|
padding-left: 2vw;
|
|
padding-right: 2vw;
|
|
|
|
top: calc(100% - 7vh);
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
color: #fff;
|
|
font-size: 13pt;
|
|
} |