File size: 1,120 Bytes
4fd23fd 2768cc1 9d6b558 2768cc1 66b3ac4 4fd23fd 2768cc1 4fd23fd 2768cc1 4fd23fd 66b3ac4 2768cc1 4fd23fd 2768cc1 4fd23fd 2768cc1 66b3ac4 2768cc1 66b3ac4 2768cc1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: url('background.png') no-repeat center center fixed;
background-size: cover;
font-family: Arial, sans-serif;
color: white;
}
.container {
text-align: center;
color: white;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 20px;
padding: 20px;
width: 300px;
}
.header .logo {
width: 150px;
}
.header p {
margin-top: 10px;
font-size: 14px;
}
.content .menu-item {
margin: 15px 0;
padding: 10px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s;
}
.content .menu-item:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.footer .jailbroken {
margin-top: 20px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 10px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
.footer .jailbroken:hover {
background-color: rgba(255, 255, 255, 0.5);
} |