HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/shoetique/wp-content/themes/north-wp/assets/sass/_sidecart.scss
/* Side Cart */
#side-cart {
	position: fixed;
	top: 0;
	height: 100%;
	z-index: 99;
	padding: 0;
	width: 320px;
	background: #fff;
	overflow: hidden;
	right: 0;
	@include translate3d(320px, 0, 0);
	.no-csstransforms3d & {
		right: -320px;
	}
	.touch & {
		overflow-x: hidden !important;
		overflow-y: scroll !important;
		-ms-overflow-style: -ms-autohiding-scrollbar !important;
		-webkit-overflow-scrolling: touch !important;	
	}
	@extend .transition;
	
	@media only screen and (max-width: $break-small) {
		width: 280px;
		right:0;
		@include translate3d(280px, 0, 0);
		
		.no-csstransforms3d & {
			right: -280px;
		}
	}
	.admin-bar & {
		padding-top: 46px;
		
		@media screen and (min-width: 783px){
		  padding-top: 32px;
		}
	}
	
	.open-cart & {
		right: 0;
		@include translate3d(0, 0, 0);
	}
	header {
		border-bottom: 2px solid $color2;
		padding: 45px 30px 30px;
		
		h6 {
			margin: 0;
			font-size: 16px;
			font-weight: 600;
			color: $color1;	
		}
	}
	.buttons {
		width: 100%;
		padding: 30px;
		background: #fff;
		border-top: 1px solid $color2;
		
		.btn + .btn {
			margin-top: 5px;
		}
	}
	.subtotal {
		width: 100%;
		padding: 22px 30px;
		border-top: 1px solid $color2;
		font-size: 16px;
		color: #454545;
		font-weight: 600;
		
		span {
			float: right;
			font-weight: 300;	
		}
	}
	ul {
		display: block;
		width: 100%;
		padding: 30px 30px 0;
		overflow: hidden;
		list-style: none;
		margin: 0;
		li {
			position: relative;
			border-bottom: 1px solid $color2;
			padding-bottom: 19px;
			margin-bottom: 20px;
			&:last-child {
				border-bottom: 0;	
				margin-bottom: 0;
			}
			figure {
				float: left;
				width: 40px;
				height: 40px;
				margin-right: 22px;
			}
			.list_content {
				padding-left: 62px;
				
				h5 {
					font-size: 14px;
					font-weight: bold;
					text-transform: uppercase;
					
					a {
						color: $color1;
					}
				}
				.quantity {
					font-size: 16px;
					font-weight: 400;
					color: $color1;
					    vertical-align: middle;
				}
				.cross {
					margin: 0 5px;
				}
				.price {
					display: inline-block;
				}
			}
			.remove {
				position: absolute;
				top: 0;
				right: -10px;
				color: rgba(0,0,0,0.4);
				
				&:hover {
					color: rgba(0,0,0,0.8);	
				}
			}
		}
	}
}