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

147 lines
2.4 KiB
CSS

*{
margin: 0;
box-sizing: border-box;
}
html{
height: 100%;
}
body{
background-repeat: no-repeat;
background-size: cover cover;
background-attachment: fixed;
font-family: sans-serif;
height: 100%;
}
#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: 20%;
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%;
min-height: 100%;
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;
}
#link-wb #link{
display: inline-block;
vertical-align: middle;
width: calc(40% - 40px);
text-align: center;
}
#link-wb form{
display: inline-block;
vertical-align: middle;
width: calc(40% - 40px);
text-align: center;
}
#link-wb #or{
display: inline-block;
vertical-align: middle;
width: 20%;
text-align: center;
}
#link a{
background-color: #0e610e;
padding: 15px;
border-radius: 10px;
color: white;
font-weight: bold;
text-decoration: none;
transition: 0.5s;
display: inline-block;
}
#link a:hover{
background-color: #1b8c1b;
transform: scale(1.1);
}
#link-wb input{
display: inline-block;
width: 80%;
margin-bottom: 15px;
}
input[type="submit"]{
background-color: #0e610e;
padding: 15px;
border-radius: 10px;
color: white;
font-weight: bold;
text-decoration: none;
transition: 0.5s;
text-align: center;
border: none;
}
input[type="submit"]:hover{
background-color: #1b8c1b;
transform: scale(1.1);
}
input[type="text"]{
padding: 10px;
border-radius: 10px;
text-decoration: none;
transition: 0.5s;
text-align: center;
border: solid #BFBFBF 3px;
}
input[type="text"]:hover, input[type="text"]:focus{
border: solid #999999 3px;
}