diff options
author | AlisaLinUwU <alisalinuwu@gmail.com> | 2025-01-26 10:42:28 +0500 |
---|---|---|
committer | AlisaLinUwU <alisalinuwu@gmail.com> | 2025-01-26 10:42:28 +0500 |
commit | 0225bdb772d1334cc1aa7ab0fc3678df0864df6b (patch) | |
tree | 85a8c8e4fcf1d935fcbad54886b73410c8cb2e26 /src/main/resources/static/scss/_section_title.scss |
Initializemain
Diffstat (limited to 'src/main/resources/static/scss/_section_title.scss')
-rw-r--r-- | src/main/resources/static/scss/_section_title.scss | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/src/main/resources/static/scss/_section_title.scss b/src/main/resources/static/scss/_section_title.scss new file mode 100644 index 0000000..4f8186d --- /dev/null +++ b/src/main/resources/static/scss/_section_title.scss @@ -0,0 +1,131 @@ +.section_title{ + h3{ + font-size: 50px; + font-weight: 400; + line-height: 51px; + color: $theme-color2; + font-family: $font1; + margin-bottom: 21px; + @media #{$mobile_device} { + font-size: 27px; + line-height: 33px; + } + @media #{$tablet_device} { + font-size: 32px; + line-height: 40px; + } + @media #{$mid_device} { + font-size: 33px; + line-height: 40px; + } + br{ + @media #{$mobile_device} { + display: none; + } + } + } + p{ + font-size: 16px; + line-height: 32px; + color: #7f7f7f; + font-weight: 400; + } +} +.mb-100{ + margin-bottom: 100px; + @media #{$mobile_device} { + margin-bottom: 40px; + } +} +.section_title2{ + i{ + font-size: 45px; + color: #BC9321; + display: block; + } + h3{ + font-size: 42px; + font-weight: 400; + line-height: 52px; + color: $theme-color4; + position: relative; + padding-bottom: 30px; + margin-top: 10px; + &::before{ + position: absolute; + content: ""; + width: 80px; + height: 1px; + background: #BC9321; + bottom: 0; + left: 50%; + margin-left: -40px; + } + + @media #{$mobile_device} { + font-size: 30px; + line-height: 36px; + } + @media #{$tablet_device} { + font-size: 36px; + line-height: 42px; + } + br{ + @media #{$mobile_device} { + display: none; + } + } + } +} +.section_title3 h3 { + font-size: 60px; + color: #FFFFFF; + font-weight: 900; + text-transform: capitalize; + @media #{$mobile_device}{ + font-size: 30px; + } + @media #{$tablet_device}{ + font-size: 35px; + } +} +.section_title3.padding_plus{ + padding-top: 115px; + padding-bottom: 50px; + @media #{$mobile_device} { + padding-top: 60px; + padding-bottom: 30px; + } + @media #{$tablet_device} { + padding-top: 80px; + padding-bottom: 40px; + } +} +.mb-55{ + margin-bottom: 53px; + @media #{$mobile_device} { + margin-bottom: 30px; + } + @media #{$tablet_device} { + margin-bottom: 40px; + } +} +.mb-40{ + margin-bottom: 40px; + @media #{$mobile_device} { + margin-bottom: 30px; + } +} + +.pl-68{ + padding-left: 68px; + @media #{$mobile_device} { + padding-left: 0; + } + @media #{$tablet_device} { + padding-left: 0; + } + @media #{$mid_device} { + padding-left: 0; + } +}
\ No newline at end of file |