ColeSite/stylesheets/mainpage.css

62 lines
806 B
CSS
Raw Normal View History

2021-12-24 17:32:52 +00:00
html
{
font-family: 'VT323', monospace;
background-color: rgb(43, 80, 201);
2021-12-27 19:53:20 +00:00
overflow: hidden;
2021-12-24 17:32:52 +00:00
}
2021-12-27 00:20:43 +00:00
a:link, a:visited
{
text-decoration: none;
color: black;;
}
2021-12-24 17:32:52 +00:00
h1
{
text-align: center;
margin-top: 45vh;
margin-bottom: 0;
2022-04-29 17:15:58 +01:00
font-size: 7rem;
2021-12-24 17:32:52 +00:00
transition: margin 1s;
}
h2
{
text-align: center;
margin-top: 0;
margin-bottom: 5vh;
2022-04-29 17:15:58 +01:00
font-size: 3rem;
2021-12-24 17:32:52 +00:00
}
#menu
2021-12-27 19:53:20 +00:00
{
2021-12-24 17:32:52 +00:00
text-align: center;
display: flexbox;
font-size: 0;
2021-12-27 00:20:43 +00:00
justify-content: center;
2021-12-24 17:32:52 +00:00
transition: font-size 1s;
}
2021-12-27 19:53:20 +00:00
a
2021-12-24 17:32:52 +00:00
{
transition: background-color 0.5s, color 0.5s;
}
2021-12-27 19:53:20 +00:00
a:hover
2021-12-24 17:32:52 +00:00
{
background-color: black;
color: rgb(43, 80, 201);
2021-12-27 19:53:20 +00:00
}
#contactBar
{
text-align: center;
display: flexbox;
justify-content: center;
font-size: 0;
transition: font-size 1s;
2021-12-24 17:32:52 +00:00
}