cv/src/app/globals.css

57 lines
891 B
CSS
Raw Normal View History

2023-05-24 04:23:20 +00:00
@import 'bootstrap/dist/css/bootstrap.min.css';
2023-05-24 19:15:53 +00:00
@import 'bootstrap-icons/font/bootstrap-icons.min.css';
2023-05-24 06:43:30 +00:00
2023-05-26 18:44:44 +00:00
body {
background-color: lightgrey;
}
.main-container {
background-color: white;
padding-top: 1rem;
padding-bottom: 0.2rem;
}
.footer {
margin-top: 2rem;
}
.tiny {
font-size: 75%;
}
h2, h3, h4 {
margin-top: 1em;
}
2023-05-24 06:43:30 +00:00
.job-card {
margin-top: 1em;
}
.job-card .timerange {
font-style: italic;
2023-05-24 19:15:53 +00:00
}
.cloud-primary .tag-badges {
font-size: 180%;
}
.cloud-standard .tag-badges {
font-size: 140%;
}
.cloud-light .tag-badges {
font-size: 130%;
filter: opacity(60%);
}
.tag-badges > span {
margin: 0.4em;
}
2023-05-25 19:01:22 +00:00
.focusable {
2023-05-24 19:15:53 +00:00
transition: all 0.3s;
}
2023-05-25 19:01:22 +00:00
.focusable:hover {
background-color: rgba(236, 241, 245, 0.3);
filter: brightness(96%);
}
.focused-element {
2023-05-25 19:01:22 +00:00
border: 2px dashed red;
}
.contacts .contact {
margin: 0.75em;
2023-05-24 06:43:30 +00:00
}