282 lines
No EOL
4.6 KiB
CSS
282 lines
No EOL
4.6 KiB
CSS
* {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Cairo', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #666666;
|
|
color: #666666;
|
|
}
|
|
|
|
.list-complete-item {
|
|
padding: 4px;
|
|
margin-top: 4px;
|
|
border: solid 1px;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.list-complete-enter, .list-complete-leave-active {
|
|
opacity: 0;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Raleway', sans-serif;
|
|
/* font-weight: bold; */
|
|
/* color: #FB0488; */
|
|
}
|
|
|
|
#nav-tab {
|
|
background-color: #666666;
|
|
border: none;
|
|
}
|
|
|
|
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
|
|
color: #FB0488;
|
|
font-weight: bold;
|
|
border: none;
|
|
}
|
|
|
|
.tab-pane {
|
|
height: 650px;
|
|
padding: 10px 10px;
|
|
background-color: white;
|
|
}
|
|
|
|
/* .tab-pane .empty {
|
|
position: absolute;
|
|
z-index: -900;
|
|
} */
|
|
|
|
.nav-tabs .nav-item{
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.nav-tabs .nav-link {
|
|
/* border: 2px solid transparent; */
|
|
border-top-left-radius: 0; /* .25rem; */
|
|
border-top-right-radius: 0;
|
|
background-color: #666666;
|
|
color: white;
|
|
}
|
|
|
|
.card-visited {
|
|
border: 5px solid #FB0488;
|
|
}
|
|
|
|
.col-sm {
|
|
padding: 0px;
|
|
}
|
|
|
|
.align-bottom-wrapper {
|
|
min-height: 64px; /* min-height: 25px; */
|
|
position: relative;
|
|
}
|
|
|
|
.align-bottom-left {
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|
|
|
|
.align-bottom-right {
|
|
position: absolute;
|
|
right: -5px;
|
|
bottom: -5px;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 0px;
|
|
/* max-height: 200px; */
|
|
}
|
|
|
|
.card-body {
|
|
padding: 0.5rem;
|
|
/* height: 150px; */
|
|
}
|
|
|
|
.row {
|
|
flex-wrap: nowrap;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
.col-sm {
|
|
padding: 5px;
|
|
}
|
|
|
|
.ghost {
|
|
visibility: hidden;
|
|
}
|
|
|
|
|
|
.avatar-card {
|
|
min-height: 145px;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-size-icon {
|
|
font-size: 3em;
|
|
margin-left: -10px;
|
|
margin-bottom: -10px;
|
|
}
|
|
|
|
.stroke {
|
|
color: transparent;
|
|
-webkit-text-stroke-width: 2px;
|
|
-webkit-text-stroke-color: white;
|
|
}
|
|
|
|
.stroke-pink {
|
|
-webkit-text-stroke-color: #FB0488;
|
|
}
|
|
|
|
.vote-avatar-bar:hover .stroke-pink {
|
|
-webkit-text-stroke-color: white;
|
|
color: white;
|
|
}
|
|
|
|
.stroke:hover {
|
|
color: white;
|
|
}
|
|
|
|
.fill {
|
|
color: white !important;
|
|
-webkit-text-stroke-width: 2px;
|
|
-webkit-text-stroke-color: white;
|
|
}
|
|
|
|
.modal-image {
|
|
height: 500px;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.go-button {
|
|
background: url('icons/go-button.svg') no-repeat top left;
|
|
/* background-color: white; */
|
|
/* background-repeat:no-repeat; */
|
|
border: none;
|
|
cursor:pointer;
|
|
overflow: hidden;
|
|
outline:none;
|
|
font-size: 1.8em;
|
|
width: 2em;
|
|
height: 1.5em;
|
|
color: black;
|
|
padding: 0;
|
|
z-index: 20;
|
|
/* border-radius: 50%; */
|
|
}
|
|
|
|
/* .go-button:hover { */
|
|
/* text-shadow: 5px 5px #666666; */
|
|
/* filter: drop-shadow( -2px -2px 2px #666 ); */
|
|
/* -webkit-filter: drop-shadow( -2px -2px 2px #666 ); */
|
|
/* } */
|
|
|
|
.flex-container-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-content: space-around;
|
|
}
|
|
|
|
.flex-item {
|
|
align-self: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.txt-modal-body {
|
|
padding: 20;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.avatar-icon-fill {
|
|
color: rgba(255, 255, 255, .7)
|
|
}
|
|
|
|
.avatar-bar {
|
|
height: 127px;
|
|
}
|
|
|
|
.avatar-bar:hover .vote-avatar-bar {
|
|
color: white !important;
|
|
}
|
|
|
|
.vote-avatar-bar:hover {
|
|
background-color: #FB0488;
|
|
color: white !important;
|
|
}
|
|
|
|
.votedfor-avatar-bar {
|
|
color: white !important;
|
|
background-color: #FB0488 !important;
|
|
}
|
|
|
|
.notvotedfor-avatar-bar {
|
|
color: #FB0488;
|
|
}
|
|
|
|
.txt-color-white {
|
|
color: white;
|
|
text-shadow: 2px 2px #666666;
|
|
}
|
|
|
|
.domain-voted {
|
|
background-color: #FB0488 !important;
|
|
}
|
|
|
|
.avatar-name {
|
|
font-size: 3.0em;
|
|
float: left;
|
|
position: absolute;
|
|
margin-top: 40px;
|
|
margin-left: 20px;
|
|
z-index: 10;
|
|
}
|
|
|
|
.isavatar {
|
|
padding: 0;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.btn-close {
|
|
color: #FB0488;
|
|
}
|
|
|
|
.voted-domain {
|
|
background-color: #FB0488
|
|
}
|
|
|
|
.voted-check {
|
|
font-size: 4.5em;
|
|
left: 60px;
|
|
top: 28px;
|
|
position: absolute;
|
|
-webkit-text-stroke-width: 2px;
|
|
-webkit-text-stroke-color: white;
|
|
}
|
|
|
|
.bkgd-pink {
|
|
background-color: #FB0488;
|
|
border: none;
|
|
margin-top: 30px;
|
|
padding: 10px 30px;
|
|
}
|
|
|
|
.bkgd-pink:hover {
|
|
background-color: #FB0488;
|
|
border: none;
|
|
}
|
|
|
|
.color-pink {
|
|
color: #FB0488;
|
|
} |