From 226516aca48e97d3dc4e4df213bc2023e64b1afd Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 27 Mar 2022 21:29:24 +0200 Subject: Initial commit --- css/frame-about.css | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 css/frame-about.css (limited to 'css/frame-about.css') diff --git a/css/frame-about.css b/css/frame-about.css new file mode 100644 index 0000000..9a2e804 --- /dev/null +++ b/css/frame-about.css @@ -0,0 +1,52 @@ +#frame-about-general { + display: grid; + grid-template-columns: 64px 1fr; +} + +#frame-about-general-icon { + width: 64px; +} + +#frame-contents { + padding: 10px; +} + +#frame-about-general-text { + display: flex; + align-items: center; + margin-left: 10px; +} + +#frame-about-debug { + width: 100%; + font-size: 12px; + margin-top: 10px; +} + +.frame-about-section * { + max-width: 50vw; + text-overflow: ellipsis; + overflow: hidden; +} + +.frame-about-section { + display: grid; + grid-template-columns: max-content 1fr; + grid-column-gap: 5px; + margin-left: 15px; + margin-bottom: 10px; +} + +.frame-about-link { + color: #0000c8; + text-decoration: underline; + cursor: pointer; +} + +.frame-about-link:hover { + text-decoration: none; +} + +.frame-about-link:active { + opacity: .5; +} \ No newline at end of file -- cgit