38 lines
613 B
CSS
38 lines
613 B
CSS
*{
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: "Roboto", cursive;
|
|
font-size: 18px;
|
|
}
|
|
@import url('https://fonts.googleapis.com/css?family=Roboto');
|
|
footer{
|
|
height: 100%;
|
|
background-color: #1B3D70;
|
|
color: white;
|
|
}
|
|
.btn-foo {
|
|
background: #BB8800;
|
|
color: white;
|
|
text-align: center;
|
|
border-radius: 50px;
|
|
border: none;
|
|
font-size: 18px;
|
|
margin: 30px;
|
|
box-sizing: border-box;
|
|
transition: all 500ms ease;
|
|
}
|
|
.btn-foo:hover{
|
|
background: rgba(163,120,0,0.9);
|
|
box-shadow: inset 0 0 0 3px #916500;
|
|
}
|
|
#b1{
|
|
height: 33px;
|
|
}
|
|
|
|
#b3{
|
|
height: 33px;
|
|
}
|
|
#b4{
|
|
height: 33px;
|
|
}
|