HEX
Server: Apache
System: Linux sxb1plzcpnl440011.prod.sxb1.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: xfp2mtarcm67 (7705020)
PHP: 7.3.33
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/ocean-extra/sass/components/_widget-custom-links.scss
/**
 * Custom Links Widget
 */
.oceanwp-custom-links {
	list-style: none;
	margin: 0;
	padding: 0;

	li {
		padding: 2px 0;

		a {
			display: inline-block;
		    position: relative;
		    font-size: 13px;
			color: $color-2;

			&:before {
				content: '\f111';
			    display: inline-block;
			    color: $color-4;
			    font-size: 10px;
			    margin-right: 10px;
			    margin-top: -2px;
			    font-family: 'Font Awesome 5 Free';
			    font-weight: 400;
			    vertical-align: middle;
			    zoom: 1;
			}

			&:hover {
				margin-left: 8px;
				color: $color-5;
			}

			&:hover:before {
				color: $color-5;
			}
		}

		&:first-child {
			padding-top: 0;
		}
	}
}