generated from goitacademy/vanilla-app-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
advantages clean point img, hero link img background clean ''
- Loading branch information
1 parent
22bd6b2
commit e425651
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ screen and (min-device-pixel-ratio: 2) { | |
rgba(17, 19, 31, 0.8) 42.62%, | ||
rgba(17, 19, 31, 0.31) 84.12%, | ||
rgba(17, 19, 31, 0) 99.94%), | ||
url('../img/hero/[email protected]'); | ||
url(../img/hero/[email protected]); | ||
} | ||
} | ||
|
||
|
@@ -208,7 +208,7 @@ screen and (min-device-pixel-ratio: 2) { | |
rgba(17, 19, 31, 0.8) 42.62%, | ||
rgba(17, 19, 31, 0.31) 84.12%, | ||
rgba(17, 19, 31, 0) 99.94%), | ||
url('../img/hero/[email protected]'); | ||
url(../img/hero/[email protected]); | ||
} | ||
} | ||
|
||
|
@@ -245,7 +245,7 @@ screen and (min-device-pixel-ratio: 2) { | |
rgba(17, 19, 31, 0.8) 42.62%, | ||
rgba(17, 19, 31, 0.31) 84.12%, | ||
rgba(17, 19, 31, 0) 99.94%), | ||
url('../img/hero/[email protected]'); | ||
url(../img/hero/[email protected]); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<section class="advantages section"> | ||
<div class="container advantages-container"> | ||
<h2 class="advantages-page-title visually-hidden">Advantages</h2> | ||
<!-- <div class="advatages-list-div"> --> | ||
|
||
<ol class="advantages-list"> | ||
<li class="advatages-list-item"> | ||
<h3 class="advantages-number current">01</h3> | ||
|
@@ -31,40 +31,40 @@ <h3 class="advantages-number current">04</h3> | |
</p> | ||
</li> | ||
</ol> | ||
<!-- </div> --> | ||
|
||
<picture> | ||
<source | ||
srcset=" | ||
../img/advantages/advantages-desktop1440.jpg 1x, | ||
../img/advantages/[email protected] | ||
./img/advantages/advantages-desktop1440.jpg 1x, | ||
./img/advantages/[email protected] | ||
" | ||
media="(min-width: 1440px)" | ||
/> | ||
<source | ||
srcset=" | ||
../img/advantages/advantages-desktop.jpg 1x, | ||
../img/advantages/[email protected] 2x | ||
./img/advantages/advantages-desktop.jpg 1x, | ||
./img/advantages/[email protected] 2x | ||
" | ||
media="(min-width: 1280px)" | ||
/> | ||
<source | ||
srcset=" | ||
../img/advantages/advantages-tablet.jpg 1x, | ||
../img/advantages/[email protected] 2x | ||
./img/advantages/advantages-tablet.jpg 1x, | ||
./img/advantages/[email protected] 2x | ||
" | ||
media="(min-width: 768px)" | ||
/> | ||
<source | ||
srcset=" | ||
../img/advantages/advantages-mobil.jpg 1x, | ||
../img/advantages/[email protected] 2x | ||
./img/advantages/advantages-mobil.jpg 1x, | ||
./img/advantages/[email protected] 2x | ||
" | ||
media="(max-width: 767px)" | ||
/> | ||
|
||
<img | ||
class="advatages-image" | ||
src="../img/advantages/advantages-mobil.jpg" | ||
src="./img/advantages/advantages-mobil.jpg" | ||
alt="Advantages picture" | ||
/> | ||
</picture> | ||
|