1
0
Fork 0
CrisisFlag/webroot/css/users_view.css

133 lines
3.3 KiB
CSS

/**************/
/* Users view */
/*************/
/* edit button */
.edit-button {
-webkit-appearance: none;
-moz-appearance: none;
border-radius: 0px;
border-style: solid;
border-width: 0;
cursor: pointer;
f font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
font-size: 1rem !important;
font-weight: bolder;
line-height: normal;
margin: 0 0 1rem;
margin-top: 12px;
position: relative;
text-align: center;
text-decoration: none;
display: inline-block;
padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
font-size: 0.8125rem;
background-color: #008CBA;
border-color: #007095;
transition: background-color 300ms ease-out;
background: rgb(67,172,106); /* Old browsers */
background: -moz-linear-gradient(top, rgba(67,172,106,1) 0%, rgba(67,198,135,1) 43%, rgba(67,172,106,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(67,172,106,1) 0%,rgba(67,198,135,1) 43%,rgba(67,172,106,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(67,172,106,1) 0%,rgba(67,198,135,1) 43%,rgba(67,172,106,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#43ac6a', endColorstr='#43ac6a',GradientType=0 ); /* IE6-9 */
}
}
.log-in-button:hover {
color: #080808;
}
.log-in-button:focus {
color: #020202;
}
.edit-button a {
color: white ;
}
/* profile card */
.profile-card {
padding: 1rem;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
margin: 2rem 0;
background-color: #fff;
}
.profile-card img {
width: 8rem;
display: block;
margin: 2rem auto;
text-align: center;
border-radius: 50%;
box-shadow: 2px 2px 5px #888888;
}
.profile-card .profile-info {
padding: 1rem;
}
.profile-card .profile-info h4 {
margin-top: 0;
text-align: center;
text-transform: uppercase;
}
.profile-card .profile-info p {
text-align: center;
}
.profile-card .profile-info .inline-list {
text-align: center;
margin-bottom: 1rem;
}
.profile-card .profile-info .inline-list li {
float: none;
display: inline-block;
}
.profile-card .profile-info .inline-list i.fi-social-facebook {
font-size: 1.5rem;
color: #3b5998;
}
.profile-card .profile-info .inline-list i.fi-social-facebook:hover {
transform: scale(1.5);
transition: all .5s ease-in-out;
}
.profile-card .profile-info .inline-list i.fi-social-twitter {
font-size: 1.5rem;
color: #55acee;
}
.profile-card .profile-info .inline-list i.fi-social-twitter:hover {
transform: scale(1.5);
transition: all .5s ease-in-out;
}
.profile-card .profile-info .inline-list i.fi-social-linkedin {
font-size: 1.5rem;
color: #0077b5;
}
.profile-card .profile-info .inline-list i.fi-social-linkedin:hover {
transform: scale(1.5);
transition: all .5s ease-in-out;
}
.profile-card .profile-info .inline-list i.fi-social-github {
font-size: 1.5rem;
color: #333;
}
.profile-card .profile-info .inline-list i.fi-social-github:hover {
transform: scale(1.5);
transition: all .5s ease-in-out;
}
.profile-card .profile-info .inline-list i.fi-social-youtube {
font-size: 1.5rem;
color: #cc181e;
}
.profile-card .profile-info .inline-list i.fi-social-youtube:hover {
transform: scale(1.5);
transition: all .5s ease-in-out;
}