CS 1.6 Monitoring Dark
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #08090c;
color: #fff;
font-family: 'Ubuntu', sans-serif;
display: flex;
justify-content: center;
padding: 40px 20px;
}
.wrapper {
width: 100%;
max-width: 1000px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
border-bottom: 2px solid #1a1d24;
padding-bottom: 15px;
}
h1 {
font-family: 'Teko', sans-serif;
font-size: 36px;
letter-spacing: 2px;
color: #fff;
}
h1 span {
color: #ff4655;
}
/* Форма */
.ip-form {
display: flex;
gap: 8px;
}
.ip-form input {
background: #12151c;
border: 1px solid #2a2f3d;
padding: 10px 14px;
color: #fff;
border-radius: 4px;
font-size: 13px;
outline: none;
width: 260px;
}
.ip-form input:focus {
border-color: #ff4655;
}
.ip-form button {
background: #ff4655;
color: #fff;
border: none;
padding: 0 20px;
font-family: 'Teko', sans-serif;
font-size: 20px;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
border-radius: 4px;
transition: 0.2s;
}
.ip-form button:hover {
background: #e03e4d;
}
/* Сетка 3x2 */
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
/* Карточка */
.card {
position: relative;
height: 220px;
background: #12151c;
border-radius: 8px;
overflow: hidden;
border: 1px solid #2a2f3d;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px;
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
border-color: #ff4655;
box-shadow: 0 8px 20px rgba(255, 70, 85, 0.15);
}
.card-bg {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-size: cover;
background-position: center;
filter: blur(1px) opacity(0.25);
transition: filter 0.2s;
}
.card:hover .card-bg {
filter: blur(0px) opacity(0.4);
}
.card-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(180deg, rgba(18,21,28,0.4) 0%, rgba(18,21,28,0.95) 100%);
}
.card-header, .card-body, .card-footer {
position: relative;
z-index: 2;
}
/* Шапка карточки */
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.badge {
font-family: 'Teko', sans-serif;
font-size: 14px;
padding: 1px 8px;
border-radius: 3px;
background: #ff4655;
color: #fff;
letter-spacing: 1px;
}
.map-name {
font-size: 12px;
color: #8b94a7;
text-transform: uppercase;
font-weight: 700;
}
/* Тело */
.server-title {
font-size: 15px;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 4px;
}
.ip-address {
font-size: 11px;
color: #ff4655;
font-family: monospace;
}
/* Футер и шкала */
.progress-info {
display: flex;
justify-content: space-between;
font-size: 10px;
color: #8b94a7;
font-weight: 700;
margin-bottom: 4px;
}
.progress-bar {
width: 100%;
height: 4px;
background: #2a2f3d;
border-radius: 2px;
overflow: hidden;
margin-bottom: 12px;
}
.progress-fill {
height: 100%;
background: #ff4655;
}
.btn-connect {
display: block;
text-align: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
text-decoration: none;
padding: 6px 0;
font-family: 'Teko', sans-serif;
font-size: 18px;
letter-spacing: 1px;
border-radius: 4px;
transition: 0.2s;
}
.btn-connect:hover {
background: #ff4655;
border-color: #ff4655;
}
/* Пустой слот */
.card.empty {
border: 2px dashed #2a2f3d;
background: transparent;
align-items: center;
justify-content: center;
}
.empty-text {
font-family: 'Teko', sans-serif;
font-size: 20px;
color: #4a5264;
letter-spacing: 1px;
}
CS 1.6 Monitoring Dark
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #08090c;
color: #fff;
font-family: 'Ubuntu', sans-serif;
display: flex;
justify-content: center;
padding: 40px 20px;
}
.wrapper {
width: 100%;
max-width: 1000px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
border-bottom: 2px solid #1a1d24;
padding-bottom: 15px;
}
h1 {
font-family: 'Teko', sans-serif;
font-size: 36px;
letter-spacing: 2px;
color: #fff;
}
h1 span {
color: #ff4655;
}
/* Форма */
.ip-form {
display: flex;
gap: 8px;
}
.ip-form input {
background: #12151c;
border: 1px solid #2a2f3d;
padding: 10px 14px;
color: #fff;
border-radius: 4px;
font-size: 13px;
outline: none;
width: 260px;
}
.ip-form input:focus {
border-color: #ff4655;
}
.ip-form button {
background: #ff4655;
color: #fff;
border: none;
padding: 0 20px;
font-family: 'Teko', sans-serif;
font-size: 20px;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
border-radius: 4px;
transition: 0.2s;
}
.ip-form button:hover {
background: #e03e4d;
}
/* Сетка 3x2 */
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
/* Карточка */
.card {
position: relative;
height: 220px;
background: #12151c;
border-radius: 8px;
overflow: hidden;
border: 1px solid #2a2f3d;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px;
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
border-color: #ff4655;
box-shadow: 0 8px 20px rgba(255, 70, 85, 0.15);
}
.card-bg {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-size: cover;
background-position: center;
filter: blur(1px) opacity(0.25);
transition: filter 0.2s;
}
.card:hover .card-bg {
filter: blur(0px) opacity(0.4);
}
.card-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(180deg, rgba(18,21,28,0.4) 0%, rgba(18,21,28,0.95) 100%);
}
.card-header, .card-body, .card-footer {
position: relative;
z-index: 2;
}
/* Шапка карточки */
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.badge {
font-family: 'Teko', sans-serif;
font-size: 14px;
padding: 1px 8px;
border-radius: 3px;
background: #ff4655;
color: #fff;
letter-spacing: 1px;
}
.map-name {
font-size: 12px;
color: #8b94a7;
text-transform: uppercase;
font-weight: 700;
}
/* Тело */
.server-title {
font-size: 15px;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 4px;
}
.ip-address {
font-size: 11px;
color: #ff4655;
font-family: monospace;
}
/* Футер и шкала */
.progress-info {
display: flex;
justify-content: space-between;
font-size: 10px;
color: #8b94a7;
font-weight: 700;
margin-bottom: 4px;
}
.progress-bar {
width: 100%;
height: 4px;
background: #2a2f3d;
border-radius: 2px;
overflow: hidden;
margin-bottom: 12px;
}
.progress-fill {
height: 100%;
background: #ff4655;
}
.btn-connect {
display: block;
text-align: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
text-decoration: none;
padding: 6px 0;
font-family: 'Teko', sans-serif;
font-size: 18px;
letter-spacing: 1px;
border-radius: 4px;
transition: 0.2s;
}
.btn-connect:hover {
background: #ff4655;
border-color: #ff4655;
}
/* Пустой слот */
.card.empty {
border: 2px dashed #2a2f3d;
background: transparent;
align-items: center;
justify-content: center;
}
.empty-text {
font-family: 'Teko', sans-serif;
font-size: 20px;
color: #4a5264;
letter-spacing: 1px;
}
CS 1.6 Monitoring Dark
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #08090c;
color: #fff;
font-family: 'Ubuntu', sans-serif;
display: flex;
justify-content: center;
padding: 40px 20px;
}
.wrapper {
width: 100%;
max-width: 1000px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
border-bottom: 2px solid #1a1d24;
padding-bottom: 15px;
}
h1 {
font-family: 'Teko', sans-serif;
font-size: 36px;
letter-spacing: 2px;
color: #fff;
}
h1 span {
color: #ff4655;
}
/* Форма */
.ip-form {
display: flex;
gap: 8px;
}
.ip-form input {
background: #12151c;
border: 1px solid #2a2f3d;
padding: 10px 14px;
color: #fff;
border-radius: 4px;
font-size: 13px;
outline: none;
width: 260px;
}
.ip-form input:focus {
border-color: #ff4655;
}
.ip-form button {
background: #ff4655;
color: #fff;
border: none;
padding: 0 20px;
font-family: 'Teko', sans-serif;
font-size: 20px;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
border-radius: 4px;
transition: 0.2s;
}
.ip-form button:hover {
background: #e03e4d;
}
/* Сетка 3x2 */
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
/* Карточка */
.card {
position: relative;
height: 220px;
background: #12151c;
border-radius: 8px;
overflow: hidden;
border: 1px solid #2a2f3d;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px;
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
border-color: #ff4655;
box-shadow: 0 8px 20px rgba(255, 70, 85, 0.15);
}
.card-bg {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-size: cover;
background-position: center;
filter: blur(1px) opacity(0.25);
transition: filter 0.2s;
}
.card:hover .card-bg {
filter: blur(0px) opacity(0.4);
}
.card-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(180deg, rgba(18,21,28,0.4) 0%, rgba(18,21,28,0.95) 100%);
}
.card-header, .card-body, .card-footer {
position: relative;
z-index: 2;
}
/* Шапка карточки */
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.badge {
font-family: 'Teko', sans-serif;
font-size: 14px;
padding: 1px 8px;
border-radius: 3px;
background: #ff4655;
color: #fff;
letter-spacing: 1px;
}
.map-name {
font-size: 12px;
color: #8b94a7;
text-transform: uppercase;
font-weight: 700;
}
/* Тело */
.server-title {
font-size: 15px;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 4px;
}
.ip-address {
font-size: 11px;
color: #ff4655;
font-family: monospace;
}
/* Футер и шкала */
.progress-info {
display: flex;
justify-content: space-between;
font-size: 10px;
color: #8b94a7;
font-weight: 700;
margin-bottom: 4px;
}
.progress-bar {
width: 100%;
height: 4px;
background: #2a2f3d;
border-radius: 2px;
overflow: hidden;
margin-bottom: 12px;
}
.progress-fill {
height: 100%;
background: #ff4655;
}
.btn-connect {
display: block;
text-align: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
text-decoration: none;
padding: 6px 0;
font-family: 'Teko', sans-serif;
font-size: 18px;
letter-spacing: 1px;
border-radius: 4px;
transition: 0.2s;
}
.btn-connect:hover {
background: #ff4655;
border-color: #ff4655;
}
/* Пустой слот */
.card.empty {
border: 2px dashed #2a2f3d;
background: transparent;
align-items: center;
justify-content: center;
}
.empty-text {
font-family: 'Teko', sans-serif;
font-size: 20px;
color: #4a5264;
letter-spacing: 1px;
}
CS 1.6 Monitoring Dark
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #08090c;
color: #fff;
font-family: 'Ubuntu', sans-serif;
display: flex;
justify-content: center;
padding: 40px 20px;
}
.wrapper {
width: 100%;
max-width: 1000px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
border-bottom: 2px solid #1a1d24;
padding-bottom: 15px;
}
h1 {
font-family: 'Teko', sans-serif;
font-size: 36px;
letter-spacing: 2px;
color: #fff;
}
h1 span {
color: #ff4655;
}
/* Форма */
.ip-form {
display: flex;
gap: 8px;
}
.ip-form input {
background: #12151c;
border: 1px solid #2a2f3d;
padding: 10px 14px;
color: #fff;
border-radius: 4px;
font-size: 13px;
outline: none;
width: 260px;
}
.ip-form input:focus {
border-color: #ff4655;
}
.ip-form button {
background: #ff4655;
color: #fff;
border: none;
padding: 0 20px;
font-family: 'Teko', sans-serif;
font-size: 20px;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
border-radius: 4px;
transition: 0.2s;
}
.ip-form button:hover {
background: #e03e4d;
}
/* Сетка 3x2 */
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
/* Карточка */
.card {
position: relative;
height: 220px;
background: #12151c;
border-radius: 8px;
overflow: hidden;
border: 1px solid #2a2f3d;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px;
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
border-color: #ff4655;
box-shadow: 0 8px 20px rgba(255, 70, 85, 0.15);
}
.card-bg {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-size: cover;
background-position: center;
filter: blur(1px) opacity(0.25);
transition: filter 0.2s;
}
.card:hover .card-bg {
filter: blur(0px) opacity(0.4);
}
.card-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(180deg, rgba(18,21,28,0.4) 0%, rgba(18,21,28,0.95) 100%);
}
.card-header, .card-body, .card-footer {
position: relative;
z-index: 2;
}
/* Шапка карточки */
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.badge {
font-family: 'Teko', sans-serif;
font-size: 14px;
padding: 1px 8px;
border-radius: 3px;
background: #ff4655;
color: #fff;
letter-spacing: 1px;
}
.map-name {
font-size: 12px;
color: #8b94a7;
text-transform: uppercase;
font-weight: 700;
}
/* Тело */
.server-title {
font-size: 15px;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 4px;
}
.ip-address {
font-size: 11px;
color: #ff4655;
font-family: monospace;
}
/* Футер и шкала */
.progress-info {
display: flex;
justify-content: space-between;
font-size: 10px;
color: #8b94a7;
font-weight: 700;
margin-bottom: 4px;
}
.progress-bar {
width: 100%;
height: 4px;
background: #2a2f3d;
border-radius: 2px;
overflow: hidden;
margin-bottom: 12px;
}
.progress-fill {
height: 100%;
background: #ff4655;
}
.btn-connect {
display: block;
text-align: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
text-decoration: none;
padding: 6px 0;
font-family: 'Teko', sans-serif;
font-size: 18px;
letter-spacing: 1px;
border-radius: 4px;
transition: 0.2s;
}
.btn-connect:hover {
background: #ff4655;
border-color: #ff4655;
}
/* Пустой слот */
.card.empty {
border: 2px dashed #2a2f3d;
background: transparent;
align-items: center;
justify-content: center;
}
.empty-text {
font-family: 'Teko', sans-serif;
font-size: 20px;
color: #4a5264;
letter-spacing: 1px;
}
CS 1.6 Monitoring Dark
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #08090c;
color: #fff;
font-family: 'Ubuntu', sans-serif;
display: flex;
justify-content: center;
padding: 40px 20px;
}
.wrapper {
width: 100%;
max-width: 1000px;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
border-bottom: 2px solid #1a1d24;
padding-bottom: 15px;
}
h1 {
font-family: 'Teko', sans-serif;
font-size: 36px;
letter-spacing: 2px;
color: #fff;
}
h1 span {
color: #ff4655;
}
/* Форма */
.ip-form {
display: flex;
gap: 8px;
}
.ip-form input {
background: #12151c;
border: 1px solid #2a2f3d;
padding: 10px 14px;
color: #fff;
border-radius: 4px;
font-size: 13px;
outline: none;
width: 260px;
}
.ip-form input:focus {
border-color: #ff4655;
}
.ip-form button {
background: #ff4655;
color: #fff;
border: none;
padding: 0 20px;
font-family: 'Teko', sans-serif;
font-size: 20px;
font-weight: 700;
letter-spacing: 1px;
cursor: pointer;
border-radius: 4px;
transition: 0.2s;
}
.ip-form button:hover {
background: #e03e4d;
}
/* Сетка 3x2 */
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
/* Карточка */
.card {
position: relative;
height: 220px;
background: #12151c;
border-radius: 8px;
overflow: hidden;
border: 1px solid #2a2f3d;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px;
transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
border-color: #ff4655;
box-shadow: 0 8px 20px rgba(255, 70, 85, 0.15);
}
.card-bg {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-size: cover;
background-position: center;
filter: blur(1px) opacity(0.25);
transition: filter 0.2s;
}
.card:hover .card-bg {
filter: blur(0px) opacity(0.4);
}
.card-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(180deg, rgba(18,21,28,0.4) 0%, rgba(18,21,28,0.95) 100%);
}
.card-header, .card-body, .card-footer {
position: relative;
z-index: 2;
}
/* Шапка карточки */
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.badge {
font-family: 'Teko', sans-serif;
font-size: 14px;
padding: 1px 8px;
border-radius: 3px;
background: #ff4655;
color: #fff;
letter-spacing: 1px;
}
.map-name {
font-size: 12px;
color: #8b94a7;
text-transform: uppercase;
font-weight: 700;
}
/* Тело */
.server-title {
font-size: 15px;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: 4px;
}
.ip-address {
font-size: 11px;
color: #ff4655;
font-family: monospace;
}
/* Футер и шкала */
.progress-info {
display: flex;
justify-content: space-between;
font-size: 10px;
color: #8b94a7;
font-weight: 700;
margin-bottom: 4px;
}
.progress-bar {
width: 100%;
height: 4px;
background: #2a2f3d;
border-radius: 2px;
overflow: hidden;
margin-bottom: 12px;
}
.progress-fill {
height: 100%;
background: #ff4655;
}
.btn-connect {
display: block;
text-align: center;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
text-decoration: none;
padding: 6px 0;
font-family: 'Teko', sans-serif;
font-size: 18px;
letter-spacing: 1px;
border-radius: 4px;
transition: 0.2s;
}
.btn-connect:hover {
background: #ff4655;
border-color: #ff4655;
}
/* Пустой слот */
.card.empty {
border: 2px dashed #2a2f3d;
background: transparent;
align-items: center;
justify-content: center;
}
.empty-text {
font-family: 'Teko', sans-serif;
font-size: 20px;
color: #4a5264;
letter-spacing: 1px;
}