remember/sims/downloads/all.css

36 lines
618 B
CSS
Raw Normal View History

2018-09-30 16:54:38 +00:00
/* FONT FACE */
@font-face {
font-family: "PatrickHand";
font-style: normal;
font-weight: 400;
src: url(../../css/PatrickHand-Regular.ttf) format('truetype');
}
body{
2018-10-26 19:00:02 +00:00
background:#bada55;
2018-10-25 14:31:20 +00:00
font-family: "PatrickHand", Helvetica, Arial;
2018-10-18 15:35:56 +00:00
background: none;
margin: 0;
2018-09-30 16:54:38 +00:00
}
canvas{
2018-10-26 19:00:02 +00:00
width:50px;
2018-09-30 16:54:38 +00:00
margin: 5px;
2018-10-18 15:35:56 +00:00
}
#download{
2018-10-25 14:31:20 +00:00
background: url(download_button.png);
background-size: 100% 100%;
2018-10-18 15:35:56 +00:00
width: 400px;
2018-10-25 14:31:20 +00:00
height: 100px;
2018-10-18 15:35:56 +00:00
cursor: pointer;
2018-10-25 14:31:20 +00:00
text-align: left;
font-size: 33px;
line-height: 100px;
transition: top 0.2s ease-in-out;
position: relative;
top:0;
}
#download:hover{
top:-5px;
2018-09-30 16:54:38 +00:00
}