OneForAll/oneforall/index.css

68 lines
999 B
CSS
Raw Normal View History

2022-03-16 18:52:45 +01:00
/* https://www.cssportal.com/css-flexbox-generator/ */
body {
margin:0;
}
h2 {
font-family: Arial, sans-serif;
}
.divtop {
border:1px;
border-bottom-style:solid;
2022-03-30 17:18:00 +02:00
display:flex;
2022-03-16 18:52:45 +01:00
padding:5px;
}
2022-03-18 23:08:22 +01:00
.divsubtop {
2022-03-30 17:18:00 +02:00
/*border-bottom: 1px solid black; /* remove after testing */
2022-03-18 23:08:22 +01:00
}
2022-03-16 18:52:45 +01:00
.searchtop {
width:24em;
}
.buttontop {
width:12em;
margin-left:15px;
}
.buttontop2 {
width:7em;
}
2022-03-30 17:18:00 +02:00
#divmain {
border:1px solid;
margin:50px;
height:80vh;
display:grid;
grid-template-areas:
'header header'
'main main'
'news costs';
grid-template-rows: 15% 65% 20%;
2022-03-16 18:52:45 +01:00
}
.divmaintop {
2022-03-30 17:18:00 +02:00
grid-area: header;
border-bottom:1px solid;
2022-03-16 18:52:45 +01:00
text-align:center;
}
2022-03-30 17:18:00 +02:00
.divmaincontent {
grid-area: main;
text-align:center;
}
.divmainnews {
grid-area: news;
border-top:1px solid;
border-right:1px solid;
text-align:center;
}
.divmaincosts {
grid-area: costs;
border-top:1px solid;
text-align:center;
2022-03-22 15:46:52 +01:00
}
hr {
margin: 0em;
}
h2 {
margin-bottom: 0em;
2022-03-16 18:52:45 +01:00
}