This repository has been archived on 2021-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
PicaPortal/main.css

79 lines
1.2 KiB
CSS

*{
margin: 0;
box-sizing: border-box;
}
body{
background-repeat: no-repeat;
background-size: cover cover;
background-attachment: fixed;
font-family: sans-serif;
}
#app-links{
display: flex;
justify-content: space-around;
flex-direction: row;
margin-top: 30px;
margin-bottom: 30px;
}
#app-links a{
background-color: #0e610e;
padding: 15px;
border-radius: 10px;
color: white;
font-weight: bold;
text-decoration: none;
transition: 0.5s;
width: 15%;
text-align: center;
}
#app-links a:hover{
background-color: #1b8c1b;
transform: scale(1.1);
}
#app-img{
display: flex;
justify-content: space-around;
flex-direction: row;
margin-top: 30px;
margin-bottom: 30px;
}
#app-img img{
width: 20%;
height: auto;
}
h1{
display: inline-block;
vertical-align: middle;
}
#title img{
height: 50px;
width: auto;
vertical-align: middle;
}
#title{
text-align: center;
padding: 10px;
}
#content{
width: 80%;
margin: auto;
background-color: white;
padding-right: 40px;
padding-left: 40px;
}
#content:first-child{
margin-top: 0;
}
#content:last-child{
margin-bottom: 0;
}
p{
padding: 10px;
text-align: justify;
}
h2, h3{
padding-top: 10px;
padding-bottom: 10px;
color: #080a4d;
}