.home { background-image: linear-gradient(135deg, var(--primary-color), #111861); background-repeat: no-repeat; background-size: cover; background-position: center; background-attachment: fixed; height: 100%; width: 100vw; overflow-x: hidden; overflow-y: auto; z-index: 10; } .home-page { margin-top: 72px; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; margin-bottom: 20px; } .home-page-favorites { position: fixed; bottom: 0; display: flex; justify-content: center; align-items: center; z-index: 20; background-color: var(--light-background-opacity); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border-radius: calc(var(--home-page-item-br) + 15px); margin: 20px; } .home-page-favorites .home-page-icon { margin: 15px } .home-page-icon { border-radius: var(--home-page-item-br); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); background-color: var(--light-background-much-opacity); width: 100%; } .normal-home-page-icon { height: 145px; width: 145px; } .home-page-widget { color: var(--dark); } .home-page-widget .header-row { -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); background-color: var(--light-background-opacity); padding: 20px; border-top-left-radius: var(--home-page-item-br); border-top-right-radius: var(--home-page-item-br); font-weight: 600; font-size: 25px; display: flex; align-items: center; width: calc(100% - 40px); } .home-page-widget .content { -webkit-backdrop-filter: var(--lots-of-content-blur); backdrop-filter: var(--lots-of-content-blur); padding: 20px; height: calc(100% - 114px); border-bottom-left-radius: var(--home-page-item-br); border-bottom-right-radius: var(--home-page-item-br); background: var(--light-background-much-opacity); width: calc(100% - 40px); } .normal-home-page-widget { width: 310px; height: 310px; } .large-home-page-widget { height: 310px; width: 640px; } .very-large-home-page-widget { width: 640px; height: 640px; } .home-page-widget .home-page-widget-icon { font-size: 17px; font-weight: normal; margin-right: 5px; } .home-page-items { display: grid; gap: 20px; grid-auto-rows: 145px; grid-template-columns: repeat(4, 145px); margin-bottom: 215px; } .home-page-item { transition: transform 0.2s; cursor: pointer; } .home-page-item:hover { transform: scale(1.05); } summary { cursor: pointer; list-style: none; display: flex; align-items: center; font-size: 25px; font-weight: 500; } summary::before { content: ""; margin: 0; } summary::-webkit-details-marker { display: none; } .user-details-storage-used_drive { background-color: var(--blue); } .user-details-storage-used_other { background-color: var(--blue); } #user-details { display: flex; width: 100%; justify-content: space-between; flex-wrap: wrap; gap: 70px; overflow-x: hidden } #user-details section { flex: 1 1 1; min-width: 0; } #user-details-content section p { margin: 20px; } #user-details-ul { padding-left: 10px; } .user-details-list-item { list-style: none; }