Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/10mohi6/hugo-theme-simple-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/custom.css')
-rw-r--r--static/css/custom.css61
1 files changed, 61 insertions, 0 deletions
diff --git a/static/css/custom.css b/static/css/custom.css
new file mode 100644
index 0000000..9c0ae4e
--- /dev/null
+++ b/static/css/custom.css
@@ -0,0 +1,61 @@
+.my-lg-6 {
+ margin-top: 5rem!important;
+ margin-bottom: 5rem!important
+ }
+
+ .bg-skew {
+ position: relative
+ }
+
+ .bg-skew:before {
+ content: "";
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ transform: skewY(-5deg);
+ transform-origin: top left;
+ z-index: -1
+ }
+
+ .bg-skew-light:before {
+ background-color: #f8f9fa
+ }
+
+ .card-hover:hover {
+ box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
+ transform: translateY(-3px)
+ }
+
+ .link-cta {
+ border-bottom: 2px solid #006aff;
+ color: #343a40;
+ font-size: .875rem;
+ letter-spacing: 1px;
+ padding-bottom: 2px;
+ text-transform: uppercase
+ }
+
+ .link-cta:hover {
+ color: #006aff;
+ text-decoration: none
+ }
+
+ .link-tag {
+ text-decoration: underline
+ }
+
+ .link-tag:hover{
+ text-decoration: none
+ }
+
+ .card-title a {
+ color: #212529
+ }
+
+ .card-title a:focus, .card-title a:hover {
+ color: #006aff;
+ text-decoration: none
+ }
+ \ No newline at end of file