Projects/nettsiden-old
Projects
/
nettsiden-old
Archived
8
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
nettsiden-old/www/css/services.css

84 lines
1.1 KiB
CSS
Raw Normal View History

2022-09-17 17:09:35 +02:00
main {
margin-top: 2em !important;
2022-09-18 01:24:57 +02:00
display: grid;
width: 80vw;
grid-template-columns: 1fr 1fr;
grid-gap: 1em;
2022-09-17 17:09:35 +02:00
}
.categoryContainer {
border: 4px solid #002244;
border-radius: 5px;
box-shadow : 0 0 20px #002244;
margin-bottom: 20px;
}
.categoryLabel {
background-color: #002244;
color: white;
padding-left: 10px;
font-family: monospace;
font-size: 24px;
}
.service {
border: 2px solid #002244;
border-radius: 5px;
padding: 10px;
margin: 10px;
display: flex;
flex-direction: row;
}
.serviceContent {
flex-grow: 1;
}
/* .serviceTitle, .serviceDescription { */
/* display: inline; */
/* } */
.serviceTitle {
margin: 0.2em !important;
}
.serviceDescription {
margin-top: 0px !important;
}
.serviceDescription::before {
content: " - ";
font-size: 18px;
display: inline;
}
.serviceLink {
width: 100%;
padding-bottom: 5px;
}
.serviceLink > a {
width: 100%;
2022-09-18 01:24:57 +02:00
/* height: 2em; */
2022-09-17 17:09:35 +02:00
border-radius: 5px;
border: 2px solid #002244;
2022-09-18 01:24:57 +02:00
padding: 8px;
/* Dont break */
white-space: nowrap;
2022-09-17 17:09:35 +02:00
}
.serviceImage {
flex-shrink: 1;
width: 100px;
height: 100px;
margin: auto auto;
}