Unfollow button font size

master
Bob Mottram 2019-09-04 17:46:01 +01:00
parent 62378231cf
commit 0be1f2bb14
1 changed files with 32 additions and 0 deletions

View File

@ -845,6 +845,22 @@ input[type=checkbox]
.scope-desc {
font-size: 32px;
}
.buttonunfollow {
border-radius: 4px;
background-color: #999;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 18px;
padding: 10px;
width: 20%;
max-width: 200px;
min-width: 100px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
float: right;
}
}
@media screen and (max-width: 1000px) {
@ -982,4 +998,20 @@ input[type=checkbox]
.scope-desc {
font-size: 30px;
}
.buttonunfollow {
border-radius: 4px;
background-color: #999;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 30px;
padding: 10px;
width: 20%;
max-width: 200px;
min-width: 100px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
float: right;
}
}