File size: 1,295 Bytes
da5f539 268585e |
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 58 59 60 61 62 |
/* Mobil cihazlar için stil ayarları */
@media (max-width: 768px) {
#attack-simulator {
margin: 10px; /* Küçük ekranlarda margin değerini azaltır */
padding: 10px; /* Padding değerini küçültür */
}
button {
flex: 1 0 100%; /* Butonları küçük ekranlarda tam genişlikte yapar */
max-width: 100%; /* Butonların genişliğini sınırlar */
}
}
/* Tablet ve küçük ekranlar için stil ayarları */
@media (max-width: 1024px) {
#attack-simulator {
margin: 20px;
padding: 15px;
}
button {
flex: 1 0 calc(50% - 10px); /* Butonları daha geniş yapar */
}
}
body {
background-color: rgb(12, 185, 228);
font-family: 'Arial', sans-serif;
color: #ff0000;
text-align: center;
}
#attack-simulator {
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 80%;
max-width: 600px;
}
button {
margin: 10px;
padding: 10px 20px;
background-color: #dd3333;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #6b1515;
}
#attack-result {
margin-top: 20px;
}
|