diff options
| author | realtradam <[email protected]> | 2022-02-19 13:54:08 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-02-19 13:54:08 -0500 |
| commit | 5ff43926a103b0a7a60ac64cef9a0d9d68700439 (patch) | |
| tree | 65864e753d2c4c465058958476cbec00d40aa7a7 /stylesheet | |
| parent | ebcd458531256ba359687beff61e73c343ea78c4 (diff) | |
| download | portfolio-site-5ff43926a103b0a7a60ac64cef9a0d9d68700439.tar.gz portfolio-site-5ff43926a103b0a7a60ac64cef9a0d9d68700439.zip | |
:)
Diffstat (limited to 'stylesheet')
| -rw-r--r-- | stylesheet/style.css | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/stylesheet/style.css b/stylesheet/style.css index 122c6ad..bf4a457 100644 --- a/stylesheet/style.css +++ b/stylesheet/style.css @@ -571,6 +571,10 @@ Ensure the default browser behavior of the `hidden` attribute. margin-right: 0.75rem; } +.mb-1 { + margin-bottom: 0.25rem; +} + .flex { display: flex; } @@ -671,6 +675,11 @@ Ensure the default browser behavior of the `hidden` attribute. border-radius: 0.5rem; } +.rounded-t-lg { + border-top-left-radius: 0.5rem; + border-top-right-radius: 0.5rem; +} + .border-0 { border-width: 0px; } @@ -692,6 +701,11 @@ Ensure the default browser behavior of the `hidden` attribute. background-color: rgb(30 41 59 / var(--tw-bg-opacity)); } +.bg-gray-700 { + --tw-bg-opacity: 1; + background-color: rgb(55 65 81 / var(--tw-bg-opacity)); +} + .bg-black { --tw-bg-opacity: 1; background-color: rgb(0 0 0 / var(--tw-bg-opacity)); @@ -779,6 +793,14 @@ Ensure the default browser behavior of the `hidden` attribute. padding-top: 0.25rem; } +.pt-2 { + padding-top: 0.5rem; +} + +.pb-3 { + padding-bottom: 0.75rem; +} + .text-center { text-align: center; } @@ -867,22 +889,25 @@ Ensure the default browser behavior of the `hidden` attribute. src: url('./assets/Asul-Regular.ttf') format('ttf'); } -a { +article h1 a { --tw-text-opacity: 1; color: rgb(255 215 0 / var(--tw-text-opacity)); } -a:hover { +article h1 a:hover { --tw-text-opacity: 1; color: rgb(255 255 255 / var(--tw-text-opacity)); } -a { +article h1 a { transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; + -webkit-text-decoration-line: underline; + text-decoration-line: underline; + text-decoration-thickness: 1px; } article h1 { |
