mirror of
				https://github.com/pierre42100/AboutComunic
				synced 2025-11-03 19:54:09 +00:00 
			
		
		
		
	Initial commit
This commit is contained in:
		
							
								
								
									
										71
									
								
								less/mixins.less
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										71
									
								
								less/mixins.less
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,71 @@
 | 
			
		||||
// Mixins
 | 
			
		||||
 | 
			
		||||
.transition-all() {
 | 
			
		||||
    -webkit-transition: all 0.35s;
 | 
			
		||||
    -moz-transition: all 0.35s;
 | 
			
		||||
    transition: all 0.35s;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.background-cover() {
 | 
			
		||||
    -webkit-background-size: cover;
 | 
			
		||||
    -moz-background-size: cover;
 | 
			
		||||
    background-size: cover;
 | 
			
		||||
    -o-background-size: cover;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.button-variant(@color; @background; @border) {
 | 
			
		||||
	color: @color;
 | 
			
		||||
	background-color: @background;
 | 
			
		||||
	border-color: @border;
 | 
			
		||||
	.transition-all;
 | 
			
		||||
 | 
			
		||||
	&:hover,
 | 
			
		||||
	&:focus,
 | 
			
		||||
	&.focus,
 | 
			
		||||
	&:active,
 | 
			
		||||
	&.active,
 | 
			
		||||
	.open > .dropdown-toggle& {
 | 
			
		||||
		color: @color;
 | 
			
		||||
		background-color: darken(@background, 5%);
 | 
			
		||||
	    border-color: darken(@border, 7%);
 | 
			
		||||
	}
 | 
			
		||||
	&:active,
 | 
			
		||||
	&.active,
 | 
			
		||||
	.open > .dropdown-toggle& {
 | 
			
		||||
		background-image: none;
 | 
			
		||||
	}
 | 
			
		||||
	&.disabled,
 | 
			
		||||
	&[disabled],
 | 
			
		||||
	fieldset[disabled] & {
 | 
			
		||||
		&,
 | 
			
		||||
		&:hover,
 | 
			
		||||
		&:focus,
 | 
			
		||||
		&.focus,
 | 
			
		||||
		&:active,
 | 
			
		||||
		&.active {
 | 
			
		||||
			background-color: @background;
 | 
			
		||||
			border-color: @border;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	.badge {
 | 
			
		||||
		color: @background;
 | 
			
		||||
		background-color: @color;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.heading-font {
 | 
			
		||||
	font-family: 'Catamaran', 'Helvetica', 'Arial', 'sans-serif';
 | 
			
		||||
	font-weight: 200;
 | 
			
		||||
	letter-spacing: 1px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.body-font {
 | 
			
		||||
	font-family: 'Muli', 'Helvetica', 'Arial', 'sans-serif';
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.alt-font {
 | 
			
		||||
	font-family: 'Lato', 'Helvetica', 'Arial', 'sans-serif';
 | 
			
		||||
	text-transform: uppercase;
 | 
			
		||||
	letter-spacing: 2px;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										460
									
								
								less/new-age.less
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										460
									
								
								less/new-age.less
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,460 @@
 | 
			
		||||
@import "variables.less";
 | 
			
		||||
@import "mixins.less";
 | 
			
		||||
 | 
			
		||||
// Global Components
 | 
			
		||||
html,
 | 
			
		||||
body {
 | 
			
		||||
    height: 100%;
 | 
			
		||||
    width: 100%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
body {
 | 
			
		||||
    .body-font;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
a {
 | 
			
		||||
    .transition-all;
 | 
			
		||||
    color: @theme-primary;
 | 
			
		||||
    &:hover,
 | 
			
		||||
    &:focus {
 | 
			
		||||
        color: darken(@theme-primary, 10%);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
hr {
 | 
			
		||||
    max-width: 100px;
 | 
			
		||||
    margin: 25px auto 0;
 | 
			
		||||
    border-width: 1px;
 | 
			
		||||
    border-color: fade(@gray-darker, 10%);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
hr.light {
 | 
			
		||||
    border-color: white;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
h1,
 | 
			
		||||
h2,
 | 
			
		||||
h3,
 | 
			
		||||
h4,
 | 
			
		||||
h5,
 | 
			
		||||
h6 {
 | 
			
		||||
    .heading-font;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
p {
 | 
			
		||||
    font-size: 18px;
 | 
			
		||||
    line-height: 1.5;
 | 
			
		||||
    margin-bottom: 20px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Navigation
 | 
			
		||||
 | 
			
		||||
.navbar-default {
 | 
			
		||||
    background-color: white;
 | 
			
		||||
    border-color: fade(@gray-darker, 5%);
 | 
			
		||||
    .transition-all;
 | 
			
		||||
    .heading-font;
 | 
			
		||||
    .navbar-header .navbar-brand {
 | 
			
		||||
        .heading-font;
 | 
			
		||||
        color: @theme-primary;
 | 
			
		||||
        &:hover,
 | 
			
		||||
        &:focus {
 | 
			
		||||
            color: darken(@theme-primary, 10%);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    .navbar-header .navbar-toggle {
 | 
			
		||||
        font-size: 12px;
 | 
			
		||||
        color: @gray-darker;
 | 
			
		||||
        padding: 8px 10px;
 | 
			
		||||
    }
 | 
			
		||||
    .nav {
 | 
			
		||||
        > li {
 | 
			
		||||
            > a {
 | 
			
		||||
                .alt-font;
 | 
			
		||||
                font-size: 11px;
 | 
			
		||||
            }
 | 
			
		||||
            > a,
 | 
			
		||||
            > a:focus {
 | 
			
		||||
                color: @gray-darker;
 | 
			
		||||
                &:hover {
 | 
			
		||||
                    color: @theme-primary;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            &.active {
 | 
			
		||||
                > a,
 | 
			
		||||
                > a:focus {
 | 
			
		||||
                    color: @theme-primary !important;
 | 
			
		||||
                    background-color: transparent;
 | 
			
		||||
                    &:hover {
 | 
			
		||||
                        background-color: transparent;
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    @media (min-width: 768px) {
 | 
			
		||||
        background-color: transparent;
 | 
			
		||||
        border-color: transparent;
 | 
			
		||||
        .navbar-header .navbar-brand {
 | 
			
		||||
            color: fade(white, 70%);
 | 
			
		||||
            &:hover,
 | 
			
		||||
            &:focus {
 | 
			
		||||
                color: white;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        .nav > li > a,
 | 
			
		||||
        .nav > li > a:focus {
 | 
			
		||||
            color: fade(white, 70%);
 | 
			
		||||
            &:hover {
 | 
			
		||||
                color: white;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        &.affix {
 | 
			
		||||
            background-color: white;
 | 
			
		||||
            border-color: fade(@gray-darker, 10%);
 | 
			
		||||
            .navbar-header .navbar-brand {
 | 
			
		||||
                color: @gray-darker;
 | 
			
		||||
                &:hover,
 | 
			
		||||
                &:focus {
 | 
			
		||||
                    color: @theme-primary;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            .nav > li > a,
 | 
			
		||||
            .nav > li > a:focus {
 | 
			
		||||
                color: @gray-darker;
 | 
			
		||||
                &:hover {
 | 
			
		||||
                    color: @theme-primary;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Homepage Header
 | 
			
		||||
 | 
			
		||||
header {
 | 
			
		||||
    position: relative;
 | 
			
		||||
    width: 100%;
 | 
			
		||||
    min-height: auto;
 | 
			
		||||
    overflow-y: hidden;
 | 
			
		||||
    background: url("../img/bg-pattern.png"), @theme-secondary; /* fallback for old browsers */
 | 
			
		||||
    background: url("../img/bg-pattern.png"), -webkit-linear-gradient(to left, @theme-secondary , @theme-tertiary); /* Chrome 10-25, Safari 5.1-6 */
 | 
			
		||||
    background: url("../img/bg-pattern.png"), linear-gradient(to left, @theme-secondary , @theme-tertiary); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
 | 
			
		||||
    color: white;
 | 
			
		||||
    .header-content {
 | 
			
		||||
        text-align: center;
 | 
			
		||||
        padding: 150px 0 50px;
 | 
			
		||||
        position: relative;
 | 
			
		||||
        .header-content-inner {
 | 
			
		||||
            position: relative;
 | 
			
		||||
            max-width: 500px;
 | 
			
		||||
            margin: 0 auto;
 | 
			
		||||
            h1 {
 | 
			
		||||
                margin-top: 0;
 | 
			
		||||
                margin-bottom: 30px;
 | 
			
		||||
                font-size: 30px;
 | 
			
		||||
            }
 | 
			
		||||
            .list-badges {
 | 
			
		||||
                margin-bottom: 25px;
 | 
			
		||||
                img {
 | 
			
		||||
                    height: 50px;
 | 
			
		||||
                    margin-bottom: 25px;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    .device-container {
 | 
			
		||||
        max-width: 300px;
 | 
			
		||||
        margin: 0 auto 100px;
 | 
			
		||||
        .screen img {
 | 
			
		||||
            border-radius: 3px;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    @media (min-width: 768px) {
 | 
			
		||||
        min-height: 100%;
 | 
			
		||||
        .header-content {
 | 
			
		||||
            text-align: left;
 | 
			
		||||
            padding: 0;
 | 
			
		||||
            height: 100vh;
 | 
			
		||||
            .header-content-inner {
 | 
			
		||||
                max-width: none;
 | 
			
		||||
                margin: 0;
 | 
			
		||||
                position: absolute;
 | 
			
		||||
                top: 50%;
 | 
			
		||||
                transform: translateY(-50%);
 | 
			
		||||
                h1 {
 | 
			
		||||
                    font-size: 35px;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        .device-container {
 | 
			
		||||
            max-width: none;
 | 
			
		||||
            max-height: calc(100vh - 100px);
 | 
			
		||||
            margin: 100px auto 0;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    @media (min-width: 992px) {
 | 
			
		||||
        .header-content .header-content-inner h1 {
 | 
			
		||||
            font-size: 50px;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Sections
 | 
			
		||||
 | 
			
		||||
section {
 | 
			
		||||
    padding: 100px 0;
 | 
			
		||||
    h2 {
 | 
			
		||||
        font-size: 50px;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
section.download {
 | 
			
		||||
    padding: 150px 0;
 | 
			
		||||
    position: relative;
 | 
			
		||||
    h2 {
 | 
			
		||||
        margin-top: 0;
 | 
			
		||||
        font-size: 50px;
 | 
			
		||||
    }
 | 
			
		||||
    .badges {
 | 
			
		||||
        .badge-link {
 | 
			
		||||
            display: block;
 | 
			
		||||
            margin-bottom: 25px;
 | 
			
		||||
            &:last-child {
 | 
			
		||||
                margin-bottom: 0;
 | 
			
		||||
            }
 | 
			
		||||
            img {
 | 
			
		||||
                height: 60px;
 | 
			
		||||
            }
 | 
			
		||||
            @media(min-width: 768px) {
 | 
			
		||||
                display: inline-block;
 | 
			
		||||
                margin-bottom: 0;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    @media(min-width: 768px) {
 | 
			
		||||
        h2 {
 | 
			
		||||
            font-size: 70px;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
section.features {
 | 
			
		||||
    .section-heading {
 | 
			
		||||
        h2 {
 | 
			
		||||
            margin-top: 0;
 | 
			
		||||
        }
 | 
			
		||||
        p {
 | 
			
		||||
            margin-bottom: 0;
 | 
			
		||||
        }
 | 
			
		||||
        margin-bottom: 100px;
 | 
			
		||||
    }
 | 
			
		||||
    .device-container,
 | 
			
		||||
    .feature-item {
 | 
			
		||||
        max-width: 300px;
 | 
			
		||||
        margin: 0 auto;
 | 
			
		||||
    }
 | 
			
		||||
    .device-container {
 | 
			
		||||
        margin-bottom: 100px;
 | 
			
		||||
        @media(min-width: 992px) {
 | 
			
		||||
            margin-bottom: 0;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    .feature-item {
 | 
			
		||||
        text-align: center;
 | 
			
		||||
        margin-bottom: 100px;
 | 
			
		||||
        h3 {
 | 
			
		||||
            font-size: 30px;
 | 
			
		||||
        }
 | 
			
		||||
        i {
 | 
			
		||||
            font-size: 80px;
 | 
			
		||||
              background: -webkit-linear-gradient(to left, @theme-secondary , @theme-tertiary);
 | 
			
		||||
              background: linear-gradient(to left, @theme-secondary , @theme-tertiary);
 | 
			
		||||
              -webkit-background-clip: text;
 | 
			
		||||
              -webkit-text-fill-color: transparent;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    @media(min-width: 992px) {
 | 
			
		||||
        .device-container,
 | 
			
		||||
        .feature-item {
 | 
			
		||||
            max-width: none;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
section.cta {
 | 
			
		||||
    position: relative;
 | 
			
		||||
    .background-cover;
 | 
			
		||||
    background-position: center;
 | 
			
		||||
    background-image: url('../img/bg-cta.jpg');
 | 
			
		||||
    padding: 250px 0;
 | 
			
		||||
    .cta-content {
 | 
			
		||||
        position: relative;
 | 
			
		||||
        z-index: 1;
 | 
			
		||||
        h2 {
 | 
			
		||||
            margin-top: 0;
 | 
			
		||||
            margin-bottom: 25px;
 | 
			
		||||
            color: white;
 | 
			
		||||
            max-width: 450px;
 | 
			
		||||
            font-size: 50px;
 | 
			
		||||
        }
 | 
			
		||||
        @media (min-width: 768px) {
 | 
			
		||||
            h2 {
 | 
			
		||||
                font-size: 80px;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    .overlay {
 | 
			
		||||
        height: 100%;
 | 
			
		||||
        width: 100%;
 | 
			
		||||
        background-color: fade(black, 50%);
 | 
			
		||||
        position: absolute;
 | 
			
		||||
        top: 0;
 | 
			
		||||
        left: 0;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
section.contact {
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    h2 {
 | 
			
		||||
        margin-top: 0;
 | 
			
		||||
        margin-bottom: 25px;
 | 
			
		||||
        i {
 | 
			
		||||
            color: @brand-google-plus;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
    ul.list-social {
 | 
			
		||||
        margin-bottom: 0;
 | 
			
		||||
        li {
 | 
			
		||||
            a {
 | 
			
		||||
                display: block;
 | 
			
		||||
                height: 80px;
 | 
			
		||||
                width: 80px;
 | 
			
		||||
                line-height: 80px;
 | 
			
		||||
                font-size: 40px;
 | 
			
		||||
                border-radius: 100%;
 | 
			
		||||
                color: white;
 | 
			
		||||
            }
 | 
			
		||||
            &.social-twitter {
 | 
			
		||||
                a {
 | 
			
		||||
                    background-color: @brand-twitter;
 | 
			
		||||
                    &:hover {
 | 
			
		||||
                        background-color: darken(@brand-twitter, 5%);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            &.social-facebook {
 | 
			
		||||
                a {
 | 
			
		||||
                    background-color: @brand-facebook;
 | 
			
		||||
                    &:hover {
 | 
			
		||||
                        background-color: darken(@brand-facebook, 5%);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            &.social-google-plus {
 | 
			
		||||
                a {
 | 
			
		||||
                    background-color: @brand-google-plus;
 | 
			
		||||
                    &:hover {
 | 
			
		||||
                        background-color: darken(@brand-google-plus, 5%);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
footer {
 | 
			
		||||
    background-color: @gray-darker;
 | 
			
		||||
    padding: 25px 0;
 | 
			
		||||
    color: fade(white, 30%);
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    p {
 | 
			
		||||
        font-size: 12px;
 | 
			
		||||
        margin: 0;
 | 
			
		||||
    }
 | 
			
		||||
    ul {
 | 
			
		||||
        margin-bottom: 0;
 | 
			
		||||
        li {
 | 
			
		||||
            a {
 | 
			
		||||
                font-size: 12px;
 | 
			
		||||
                color: fade(white, 30%);
 | 
			
		||||
                &:hover,
 | 
			
		||||
                &:focus,
 | 
			
		||||
                &:active,
 | 
			
		||||
                &.active {
 | 
			
		||||
                    text-decoration: none;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Bootstrap Overrides
 | 
			
		||||
 | 
			
		||||
.bg-primary {
 | 
			
		||||
    background: @theme-primary;
 | 
			
		||||
    background: -webkit-linear-gradient(@theme-primary , darken(@theme-primary, 5%));
 | 
			
		||||
    background: linear-gradient(@theme-primary , darken(@theme-primary, 5%));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.text-primary {
 | 
			
		||||
    color: @theme-primary;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.no-gutter > [class*='col-'] {
 | 
			
		||||
    padding-right:0;
 | 
			
		||||
    padding-left:0;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Button Styles
 | 
			
		||||
.btn-outline {
 | 
			
		||||
    color: white;
 | 
			
		||||
    border-color: white;
 | 
			
		||||
    border: 1px solid;
 | 
			
		||||
    &:hover,
 | 
			
		||||
    &:focus,
 | 
			
		||||
    &:active,
 | 
			
		||||
    &.active {
 | 
			
		||||
        color: white;
 | 
			
		||||
        background-color: @theme-primary;
 | 
			
		||||
        border-color: @theme-primary;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.btn {
 | 
			
		||||
    .alt-font;
 | 
			
		||||
    border-radius: 300px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.btn-xl {
 | 
			
		||||
    padding: 15px 45px;
 | 
			
		||||
    font-size: 11px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Extras
 | 
			
		||||
// -- Highlight Color Customization
 | 
			
		||||
::-moz-selection {
 | 
			
		||||
    color: white;
 | 
			
		||||
    text-shadow: none;
 | 
			
		||||
    background: @gray-darker;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
::selection {
 | 
			
		||||
    color: white;
 | 
			
		||||
    text-shadow: none;
 | 
			
		||||
    background: @gray-darker;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
img::selection {
 | 
			
		||||
    color: white;
 | 
			
		||||
    background: transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
img::-moz-selection {
 | 
			
		||||
    color: white;
 | 
			
		||||
    background: transparent;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
body {
 | 
			
		||||
    webkit-tap-highlight-color: @gray-darker;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										18
									
								
								less/variables.less
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										18
									
								
								less/variables.less
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,18 @@
 | 
			
		||||
// Variables
 | 
			
		||||
 | 
			
		||||
// Gray and Brand Colors for use across theme
 | 
			
		||||
 | 
			
		||||
@theme-primary:    #fdcc52;
 | 
			
		||||
@theme-secondary:  #7b4397;
 | 
			
		||||
@theme-tertiary:   #dc2430;
 | 
			
		||||
 | 
			
		||||
@gray-base:        #000;
 | 
			
		||||
@gray-darker:      lighten(@gray-base, 13.5%); // #222
 | 
			
		||||
@gray-dark:        lighten(@gray-base, 20%);   // #333
 | 
			
		||||
@gray:             lighten(@gray-base, 33.5%); // #555
 | 
			
		||||
@gray-light:       lighten(@gray-base, 46.7%); // #777
 | 
			
		||||
@gray-lighter:     lighten(@gray-base, 93.5%); // #eee
 | 
			
		||||
 | 
			
		||||
@brand-twitter:		#1da1f2;
 | 
			
		||||
@brand-facebook:	#3b5998;
 | 
			
		||||
@brand-google-plus:	#dd4b39;
 | 
			
		||||
		Reference in New Issue
	
	Block a user