File size: 1,223 Bytes
e1a87c1 |
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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
/* style.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.dark-theme {
background-color: #222;
color: #fff;
}
header {
background-color: #333;
padding: 10px;
text-align: center;
display: flex;
align-items: center;
}
h1 {
margin: 0;
margin-left: 10px; /* Добавляем отступ для разделения иконки и заголовка */
}
.icon {
width: 30px;
height: 30px;
}
nav {
background-color: #444;
padding: 10px;
}
.tabs {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
}
.tabs li {
display: inline;
}
.tabs a {
text-decoration: none;
color: #fff;
padding: 10px;
margin: 5px;
border: 1px solid #555;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.tabs a:hover {
background-color: #555;
}
.tabs a.active {
background-color: #555;
}
main {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px;
}
iframe {
width: 100%;
height: calc(100vh - 150px); /* Вычитаем высоту заголовка и вкладок */
}
|