gitnet-project/style.css

72 lines
986 B
CSS
Raw Normal View History

2018-10-21 12:49:25 +02:00
body, .container-fluid, *[class*="col-md-"] {
2016-06-21 18:47:26 +02:00
margin: 0;
padding: 0;
}
.row {
margin-left: 0;
margin-right: 0;
}
#home {
2018-10-21 12:49:25 +02:00
min-height: calc(100vh);
2016-06-21 18:47:26 +02:00
background: url('img/intro-bg.jpg') center center;
background-size: 100%;
text-align: center;
color: #fff;
}
2018-10-21 12:49:25 +02:00
img {
max-width: 100%;
2016-06-21 18:47:26 +02:00
}
2018-10-21 12:49:25 +02:00
h1 span {
background: #333;
2016-06-21 18:47:26 +02:00
padding: 3px 8px;
2018-10-21 12:49:25 +02:00
color: #fff;
2016-06-21 18:47:26 +02:00
font-family: Times;
}
#about {
2018-10-21 12:49:25 +02:00
padding-top: 30px;
2016-06-21 18:47:26 +02:00
}
2018-10-21 12:49:25 +02:00
p {
color: #333;
2016-06-21 18:47:26 +02:00
padding: 10px 20% 10px 20%;
font-size: 20px;
font-family: monospace;
2018-10-21 12:49:25 +02:00
text-align: center;
2016-06-21 18:47:26 +02:00
}
2018-10-21 12:49:25 +02:00
.btn {
2016-06-21 18:47:26 +02:00
background: transparent;
2018-10-21 12:49:25 +02:00
border: 3px solid #d45500;
color: #d45500;
2016-06-21 18:47:26 +02:00
font-size: 30px;
}
2016-06-21 18:56:15 +02:00
2018-10-21 12:49:25 +02:00
a {
color: #d45500;
border-bottom: 2px solid #d45500;
}
a:hover {
background: #d45500;
color: #fff;
}
.table-container {
display: table;
height: 100%;
}
.table-row {
display: table-row;
2016-06-21 18:56:15 +02:00
}
2018-10-21 12:49:25 +02:00
.table-cell {
display: table-cell;
vertical-align: middle;
2016-06-21 18:56:15 +02:00
}