100-project-100-days-website/100_projects/49-test-notification-click/style.css

38 lines
635 B
CSS
Raw Normal View History

2023-04-11 01:27:50 +03:00
* {
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
margin: 0;
min-height: 100vh;
background-color: #161622;
}
button {
background-color:#808080;
color: white;
font-size: 19px;
padding: 1rem;
border-radius: 5px;
border: none;
cursor: pointer;
transition: .5s;
}
button:hover{
background: white;
color: #161622;
}
#container {
position: fixed;
bottom: 10px;
right: 10px;
}
.test {
background-color: #F20A15;
border-radius: 5px;
color: white;
padding: 15px;
margin: 10px;
width: 100px;
}