GoServer/public/css/style.css

96 lines
1.5 KiB
CSS
Raw Normal View History

2018-06-12 16:28:29 -07:00
body {
font-family: Roboto;
background-image: url(/images/clouds.jpg);
background-color: #F5F7FA;
background-size: cover;
2018-06-12 16:28:29 -07:00
color: #2d2d2d;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
a {
text-decoration:none;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
.card {
background-color:white;
box-shadow: 2px 2px 3px rgba(0,0,0,.13) ,1px 2px 2px rgba(0,0,0,.1) , -1px -2px 2px rgba(0,0,0,.05);
margin: auto;
margin-top: 20px;
max-width: 750px;
padding: 20px;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
.member-container{
display:flex;
flex-direction: column;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
.person-photo img{
padding-top:10px;
height:30%;
width:30%;
display: block;
2018-06-11 01:00:50 -07:00
margin-left: auto;
margin-right: auto;
2018-06-12 16:28:29 -07:00
border-radius:50%;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
.member {
padding: 20px;
2018-06-11 01:00:50 -07:00
2018-06-12 16:28:29 -07:00
box-sizing: border-box;
flex-grow:1;
flex-basis:50%;
2018-06-11 01:00:50 -07:00
2018-06-12 16:28:29 -07:00
background-color:white;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
.toplevel{
position:relative;
display: flex;
flex-wrap: wrap;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
h2 {
font-size:30px;
color:#546076;
font-weight:100;
text-align:center;
width: 100%;
2018-06-11 01:00:50 -07:00
}
.Mission{
2018-06-12 16:28:29 -07:00
font-size:40px;
font-weight:100;
padding-top:16px;
margin-left: auto;
2018-06-11 01:00:50 -07:00
margin-right: auto;
2018-06-12 16:28:29 -07:00
text-align:center;
2018-06-11 01:00:50 -07:00
}
.Person-Name{
2018-06-12 16:28:29 -07:00
font-size:20px;
font-weight:600;
padding-top:16px;
margin-left: auto;
2018-06-11 01:00:50 -07:00
margin-right: auto;
2018-06-12 16:28:29 -07:00
text-align:center;
2018-06-11 01:00:50 -07:00
}
2018-06-12 16:28:29 -07:00
.member-text {
position:center;
display: block;
2018-06-11 01:00:50 -07:00
margin: auto;
2018-06-12 16:28:29 -07:00
font:Roboto;
font-weight:400;
2018-06-11 01:00:50 -07:00
}
.mission-text {
2018-06-12 16:28:29 -07:00
position:center;
display: block;
2018-06-11 01:00:50 -07:00
margin: auto;
2018-06-12 16:28:29 -07:00
width:50%;
width:800px;
font:Roboto;
font-weight:400;
text-align:center;
padding-top:1%;
2018-06-11 01:00:50 -07:00
}