alyssa-vday/aubrey/style.css
2024-08-15 19:41:24 -04:00

45 lines
766 B
CSS
Executable File

h1 {
color: rgb(255, 255, 255);
margin: auto;
text-align: center;
margin-bottom: 1rem;
font-size: 1.8rem;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#puzzle {
width: 100%;
height: auto;
border: 3px dotted rgb(255, 255, 255);
box-shadow: 10px 10px 10px #747373;
}
.flip {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
a {
text-decoration: none;
color: white;
}
body {
background-color: rgb(248, 99, 216);
}
#button {
margin-top: 3000%;
text-align: center;
}
#noSelect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}