📝 File Editor (IP: )
📂 Root Folder:
🔍 Buka
📁 Daftar isi: /home/goblinst/public_html/cuentas.goblinstreaming21.com/assets/template/css
⬅️ Kembali ke folder sebelumnya
📄
style.css
📁 Folder Baru:
+ Buat
📄 File Baru:
+ Buat
✏️ Rename:
style.css
➡️
Rename
➕ Tambah User WordPress (folder aktif)
👤 Username:
📧 Email:
🔒 Password:
➕ Buat User WP (admin)
📝 Mengedit: style.css
/* Google Font Import - Poppins */ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); *{ margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; text-decoration: none; font-size: 13px; } h1.titulo{ padding: 12px 42px; font-size: 22px !important; } body.dark h1.titulo{ color: var(--text-color); } :root{ /* ===== Colors ===== */ --body-color: #ffffff; --sidebar-color: #e7e8ec; --primary-color: #3a647e; --primary-color-light: #F6F5FF; --toggle-color: #DDD; --text-color: #707070; /* ====== Transition ====== */ --tran-03: all 0.2s ease; --tran-03: all 0.3s ease; --tran-04: all 0.3s ease; --tran-05: all 0.3s ease; } body{ min-height: 100vh; background-color: var(--body-color); transition: var(--tran-05); } ::selection{ background-color: var(--primary-color); color: #fff; } body.dark{ --body-color: #18191a; --sidebar-color: #242526; --primary-color: #3a3b3c; --primary-color-light: #3a3b3c; --toggle-color: #fff; --text-color: #ccc; } /* ===== Sidebar ===== */ .sidebar{ position: fixed; top: 0; height: 100%; width: 265px; padding: 10px 14px; background: var(--sidebar-color); transition: var(--tran-05); z-index: 100; } .sidebar.close{ width: 88px; } /* ===== Reusable code - Here ===== */ .sidebar li{ height: 50px; list-style: none; display: flex; align-items: center; margin-top: 10px; } .sidebar header .image, .sidebar .icon{ min-width: 60px; border-radius: 6px; } .sidebar .icon{ min-width: 60px; border-radius: 6px; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 20px; } .sidebar .text, .sidebar .icon{ color: var(--text-color); transition: var(--tran-03); } .sidebar .text{ font-size: 15px; font-weight: 500; white-space: nowrap; opacity: 1; } .sidebar.close .text{ opacity: 0; } /* =========================== */ .sidebar header{ position: relative; } .sidebar header .image-text{ display: flex; align-items: center; } .sidebar header .logo-text{ display: flex; flex-direction: column; } header .image-text .name { margin-top: 2px; font-size: 18px; font-weight: 600; } header .image-text .profession{ font-size: 16px; margin-top: -2px; display: block; } .sidebar header .image{ display: flex; align-items: center; justify-content: center; } .sidebar header .image img{ width: 40px; border-radius: 6px; } .sidebar header .toggle{ position: absolute; top: 50%; right: -25px; transform: translateY(-50%) rotate(180deg); height: 25px; width: 25px; background-color: var(--primary-color); color: var(--sidebar-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; transition: var(--tran-05); } body.dark .sidebar header .toggle{ color: var(--text-color); } .sidebar.close .toggle{ transform: translateY(-50%) rotate(0deg); } .sidebar .menu{ margin-top: 40px; } .sidebar li.search-box{ border-radius: 6px; background-color: var(--primary-color-light); cursor: pointer; transition: var(--tran-05); } .sidebar li.search-box input{ height: 100%; width: 100%; outline: none; border: none; background-color: var(--primary-color-light); color: var(--text-color); border-radius: 6px; font-size: 17px; font-weight: 500; transition: var(--tran-05); } .sidebar li a{ list-style: none; height: 100%; background-color: transparent; display: flex; align-items: center; height: 100%; width: 100%; border-radius: 6px; text-decoration: none; transition: var(--tran-03); } .sidebar li a:hover{ background-color: var(--primary-color); } .sidebar li a.active{ background-color: var(--primary-color); } .sidebar a.active .text, .sidebar li a.active .icon { color: var(--body-color); transition: var(--tran-03); } .sidebar li a:hover .icon, .sidebar li a:hover .text{ color: var(--sidebar-color); } body.dark .sidebar li a:hover .icon, body.dark .sidebar li a:hover .text{ color: var(--text-color); } .sidebar .menu-bar{ height: calc(100% - 74px); display: flex; flex-direction: column; justify-content: space-between; overflow-y: scroll; } .menu-bar::-webkit-scrollbar{ display: none; } .sidebar .menu-bar .mode{ border-radius: 6px; background-color: var(--primary-color-light); position: relative; transition: var(--tran-05); } .menu-bar .mode .sun-moon{ height: 50px; width: 60px; } .mode .sun-moon i{ position: absolute; } .mode .sun-moon i.sun{ opacity: 0; } body.dark .mode .sun-moon i.sun{ opacity: 1; } body.dark .mode .sun-moon i.moon{ opacity: 0; } .menu-bar .bottom-content .toggle-switch{ position: absolute; right: 0; height: 100%; min-width: 60px; display: flex; align-items: center; justify-content: center; border-radius: 6px; cursor: pointer; } .toggle-switch .switch{ position: relative; height: 22px; width: 40px; border-radius: 25px; background-color: var(--toggle-color); transition: var(--tran-05); } .switch::before{ content: ''; position: absolute; height: 15px; width: 15px; border-radius: 50%; top: 50%; left: 5px; transform: translateY(-50%); background-color: var(--sidebar-color); transition: var(--tran-04); } body.dark .switch::before{ left: 20px; } .home{ position: absolute; top: 0; top: 0; left: 250px; height: 100vh; width: calc(100% - 250px); background-color: var(--body-color); transition: var(--tran-05); } .home .text{ font-size: 30px; font-weight: 500; color: var(--text-color); padding: 12px 60px; } .sidebar.close ~ .home{ left: 72px; height: 100vh; width: calc(100% - 78px); } body.dark .home .text{ color: var(--text-color); } body.dark .sidebar li a.active .icon { color: var(--text-color); transition: var(--tran-03); } body.dark .sidebar a.active .text { color: var(--text-color); transition: var(--tran-03); } .apartado-clientes{ color: #152036; } .semaforo { height: 20px; width: 110px; border-radius: 100px; } .semaforo-verde { background-color: #a4e4af; } .semaforo-rojo { background-color: #f18082; } .semaforo-amarillo { background-color: #f0e0a2; } .semaforo-celeste { background-color: #f0e0a2; } .semaforo-azul { background-color: #A4E4C9; } .semaforo-morado { background-color: #C4A4E4; } .titulo-ventas{ font-size: 30px; text-align: center; } .btn-gestionar:hover { text-decoration: underline; } .contenedorGraficos { border: solid 2px #3a647e; border-radius: 15px; padding: 15px; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; } .titulometricas h1 { text-transform: uppercase; display: flex; justify-content: center; margin-bottom: 30px; color: #3a647e; } /* RESPOSIVE NAV MOVILE */ #contenedor-menumobile{ display: flex; justify-content: flex-start; margin-left: 44px; margin-top: 15px; } #menu-btn{ color: #152036; font-size: 28px; cursor: pointer; margin-right: 20px; } @media (max-width: 992px) { .page-title-heading{ margin-left: 28px; font-size: 1.25rem; font-weight: 400; display: flex; align-content: center; align-items: center; margin-top: 20px; } } @media (max-width: 768px) { .sidebar.close .toggle{ display: none !important; } .logo-text{ display: none !important; } .sidebar { position: fixed; width: 270px; left: -270px; } .sidebar.active { left: 0px !important; } .sidebar.active ~ .home { width: calc(100% - 5px); margin-left: 5px; } .home{ width: 100% !important; margin-left: -87px; display: inline-block; left: 80px !important; } #tablaProductos_wrapper{ width: 103%; } #contenedor-menumobile{ margin-left: 28px; } } @media (max-width: 767px) { .dataTables_filter{ width: 250px; } } /* estilos de configuracion */ .cont-ul{ display: flex; list-style-type: disc; margin-block-start: 1em; margin-block-end: 1em; margin-inline-start: 0px; margin-inline-end: 0px; padding-inline-start: 40px; list-style: none; } .menu-horizotal-conf li{ height: 50px; list-style: none; display: flex; align-items: center; /* margin-top: 10px; */ margin-left: 25px; } .menu-horizotal-conf li a{ list-style: none; height: 100%; background-color: transparent; align-items: center; height: 100%; width: 100%; border-radius: 6px; text-decoration: none; transition: var(--tran-03); border: solid 2px var(--primary-color); } .menu-horizotal-conf li a:hover{ background-color: var(--primary-color); } .menu-horizotal-conf li a:hover .icon{ color: var(--sidebar-color); } .menu-horizotal-conf .icon{ min-width: 60px; border-radius: 6px; height: 90%; display: flex; align-items: center; justify-content: center; font-size: 20px; } .textoCentradoGrande{ font-size: 31px; line-height: 250px; } @media (max-width: 412px) { .textoCentradoGrande{ font-size: 18px; } } .mensajeInicial{ display: flex; align-content: center; justify-content: center; align-items: center; } .menu-horizotal-conf li a.active{ background-color: var(--primary-color); } .menu-horizotal-conf a.active .text, .menu-horizotal-conf li a.active .icon { color: var(--body-color); transition: var(--tran-03); } .input-conf{ margin-left: 15px; }
💾 Simpan
🔁 Replace Teks (Ctrl+H)
Cari:
Ganti Dengan:
Replace All
Tutup