1
0
Fork 0
infojune/src/assets/styles.css

62 lines
1.1 KiB
CSS
Raw Normal View History

@font-face {
font-family: 'roboto';
src: url('/fonts/roboto-bold-webfont.woff2') format('woff2'),
url('/fonts/roboto-bold-webfont.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'roboto';
src: url('/fonts/roboto-regular-webfont.woff2') format('woff2'),
url('/fonts/roboto-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.button-redirect{
border:none;
background-color:#0483d8;
height:40px;
color:white;
text-decoration: none;
}
.button-redirect:hover{
border:#0483d8 solid 2px;
transition:0.4s;
background-color:white;
color:#0483d8;
text-decoration: none;
}
.button-donate{
border:none;
background-color:#0483d8;
height:40px;
color:white;
position:relative;
}
.button-donate::before{
content: "\25AE";
font-family: "FontAwesome";
left:10px;
position:absolute;
top:0;
}
.button-donate:hover{
border:#0483d8 solid 2px;
transition:0.4s;
background-color:white;
color:#0483d8;
}
p{
font-family: roboto;
}
h2{
font-family: roboto;
}