2025-05-01 14:57:35 +02:00

59 lines
1.2 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/gh/hung1001/font-awesome-pro@4cac1a6/css/all.css");
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
background-color: #262626;
}
main > article > section > img {
width: 150px;
}
main > article {
display: flex;
flex-wrap: wrap ;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
main > article > section.informations {
width: 363px;
color: #ffffff;
padding: 13px 13px 13px 13px;
font-weight: bolder;
text-align: center;
font-family: "Roboto", sans-serif;
}
main > article > section.informations > h2 {
margin-bottom: 10px;
}
main > article > section.informations > p {
font-weight: lighter;
text-align: left;
margin-left: 10px;
}
button.close {
float: right;
color: #ffffff;
width: 30px;
height: 30px;
border: none;
cursor: pointer;
outline: none;
transition: .5s;
margin-top: 15px;
margin-right: 15px;
border-radius: 5px;
background-color: #0000001c;
}