mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
30 lines
571 B
CSS
30 lines
571 B
CSS
.floatRight{float:right;margin-left:20px}
|
|
|
|
#hp {
|
|
float: right;
|
|
margin: 0 0 0 15px;
|
|
}
|
|
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
}
|
|
|
|
#grad {
|
|
height: 200px;
|
|
background-image: linear-gradient(cyan, blue);
|
|
}
|
|
|
|
.back {
|
|
height: 100%;
|
|
width: 100%;
|
|
background: rgb(0,0,191);
|
|
background: linear-gradient(225deg, rgba(0,0,191,1) 35%, rgba(0,212,255,1) 100%);
|
|
}
|
|
|
|
.footer {
|
|
height: auto;
|
|
width: 100%;
|
|
background: rgb(0,11,255);
|
|
background: linear-gradient(225deg, rgba(0,11,255,1) 100%, rgba(0,11,255,1) 100%);
|
|
} |