Zero 7 - In The Waiting Line
The Internet - Hold On
Author - After Time
Childish Gambino - Redbone
Flatsound - we're fighting again
Gregory Alan Isakov - San Luis
Daft Punk - The Game of Love
Demais - Azymuth -
Souls of Mischief - 93 Til Infinity - Instrumental - 12 vinyl
L'indécis - Soulful (Chillhop Live Session)
This file contains hidden or 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
export const customStyles = { | |
indicatorSeparator: () => ({ display: 'none' }), | |
control: (base, state) => ({ | |
...base, | |
background: '#fff', | |
paddingRight: '30px', | |
border: state.menuIsOpen ? '2px solid black' : '1px solid #ccc', | |
boxShadow: 'none', | |
'&:hover': { | |
border: state.menuIsOpen ? '2px solid black' : '1px solid #ccc', |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<script> | |
var i=new Image;i.onload=i.onerror=function(){document.body.classList.add(i.height==1?"webp":"no-webp")};i.src="data:image/webp;base64,UklGRhoAAABXRUJQVlA4TA0AAAAvAAAAEAcQERGIiP4HAA=="; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> | |
<body> | |
<script src="./js/main.js"></script> |
This file contains hidden or 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
'use strict' | |
const element = document.getElementById('element') | |
window.onscroll = () => { | |
const yPos = window.pageYOffset; | |
// Основные операторы (+ - / *) https://learn.javascript.ru/operators | |
element.style.setProperty('top', yPos / 2 + 'px'); | |
} |
- Загружать сайт на языке браузера пользователя
- Переключать языки сохраняя текущий язык в localStorage
Эта переменная определяет язык браузера в формате "en", "en-US", "zh-CN", "ja-JP"
За основу нашего курса взяты самые лучшие учебники в интернете
This file contains hidden or 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
* { | |
margin: 0; | |
padding: 0; | |
} | |
body { | |
display: flex; | |
min-height: 100vh; | |
flex-direction: column; | |
justify-content: space-between; |
This file contains hidden or 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
/* Initialize Firebase | |
/* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */ | |
const config = { | |
apiKey: "AIzaSyBM3775D6P6G97DJ19M3MxD9uCfvFf_AVs", | |
authDomain: "web-dev-45423.firebaseapp.com", | |
databaseURL: "https://web-dev-45423.firebaseio.com", | |
projectId: "web-dev-45423", | |
storageBucket: "", | |
messagingSenderId: "981641631998" |
NewerOlder