46 lines
919 B
CSS
46 lines
919 B
CSS
body {
|
|
background: none !important;
|
|
}
|
|
|
|
#container {
|
|
font-size: 40px;
|
|
padding: 25px;
|
|
color: white;
|
|
position: fixed;
|
|
top: 60%;
|
|
right: 15%;
|
|
transform: translate(-50%, -50%);
|
|
background-color: rgb(88, 88, 88);
|
|
height: 400px;
|
|
width: 250px;
|
|
border: 5px solid aliceblue;
|
|
border-radius: 70px;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
background-color:black;
|
|
color: blanchedalmond;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
padding-top: 6px;
|
|
padding-bottom: 6px;
|
|
border-radius: 50px;
|
|
margin:10px;
|
|
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
|
font-size: 50px;
|
|
transition-duration: 0.4s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: blanchedalmond;
|
|
color: black;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
|
|
font-size: 40px;
|
|
text-align: center;
|
|
}
|