You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
341 B
CSS
31 lines
341 B
CSS
@font-face {
|
|
font-family: points;
|
|
src: url(../fonts/AC1-SemiLightDots.ttf);
|
|
}
|
|
|
|
html{
|
|
|
|
}
|
|
|
|
body{
|
|
background-color: blue;
|
|
color: white;
|
|
}
|
|
|
|
h1{
|
|
font-family: points;
|
|
}
|
|
|
|
.draggable {
|
|
position: absolute;
|
|
cursor: grab;
|
|
border: 2px white solid;
|
|
background: black
|
|
}
|
|
|
|
.resizable {
|
|
width: 150px;
|
|
height: 150px;
|
|
padding: 0.5em;
|
|
}
|