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
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif; | |
font-family: Georgia, Cambria, "Times New Roman", Times, serif; |
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
body { | |
min-width: 940px; | |
font-family: "HelveticaNeue-Light", Arial, sans-serif; | |
} | |
h1, h3 { font-size: 24px; } | |
h2 { font-size: 34px; } | |
p { | |
margin-top: 10px; |
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
.videoBackground { | |
width: 100%; | |
height: 100%; | |
overflow: hidden; | |
video { | |
position: absolute; | |
top: 0; | |
min-width: 100%; | |
min-height: 100%; |
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
@media only screen and (min-width: 1224px) { | |
/* Desktop */ | |
} | |
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { | |
/* iPad */ | |
} | |
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) { | |
/* iPad Portrait */ |
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
'atom-text-editor:not(mini).autocomplete-active': | |
'enter': 'autocomplete-plus:confirm' | |
'up': 'autocomplete-plus:select-previous' | |
'down': 'autocomplete-plus:select-next' | |
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
Hello, World! | |
We are <a href="http://moscoding.ru">Moscow Coding School</a>! |
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
<meta charset="utf-8"> | |
<!-- <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> --> | |
Всем привет! | |
Мы <a href="http://moscoding.ru">Moscow Coding School</a>! |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Bad Semantics</title> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<td>Atom is a fast-moving code editor developed by GitHub.</td> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Good Semantics</title> | |
</head> | |
<body> | |
<blockquote> | |
<p>Atom is a fast-moving code editor developed by GitHub.</p> | |
</blockquote> |