mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
31 lines
394 B
CSS
31 lines
394 B
CSS
body {
|
|
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
a {
|
|
color: #00B7FF;
|
|
}
|
|
|
|
.textCenter {
|
|
text-align: center;
|
|
}
|
|
|
|
.header {
|
|
height: 500px;
|
|
background: url("../images/headerBackground.jpg") center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.headerText{
|
|
font-size: 80px;
|
|
color: white;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.centerDiv{
|
|
position: relative;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
}
|
|
|