File size: 912 Bytes
23b831c |
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 |
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
}
header {
background: #1f2937;
color: white;
padding: 1rem;
text-align: center;
font-size: 1.5rem;
font-weight: bold;
}
.controls {
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
padding: 1rem;
}
.controls input, .controls select {
padding: 0.5rem;
font-size: 1rem;
border-radius: 6px;
border: 1px solid #ccc;
}
.controls button {
padding: 0.5rem 1rem;
font-size: 1rem;
cursor: pointer;
border: none;
border-radius: 6px;
background: #4f46e5;
color: white;
transition: 0.2s;
}
.controls button:hover {
background: #6366f1;
}
#iframes {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
padding: 1rem;
}
iframe {
width: 90%;
max-width: 1000px;
height: 600px;
border: 2px solid #ddd;
border-radius: 10px;
}
|