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
| body | |
| { | |
| background: pink | |
| } | |
| .popup | |
| { | |
| position: relative; | |
| width: 200px; |
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
| /** | |
| * Анимированное появление попапа | |
| */ | |
| .popup { | |
| width: 500px; | |
| height: 500px; | |
| margin: 30px; | |
| background: #900; | |
| animation: 'fadeIn' 1s 0 4; |
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
| # -*- coding: utf-8 -*- | |
| from flask import Flask | |
| import gdata.docs.service | |
| import gdata.spreadsheet.service | |
| app = Flask(__name__) | |
| def getRegistrationsCount(): | |
| client = gdata.spreadsheet.service.SpreadsheetsService() |
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
| var parser = document.createElement('a'); | |
| parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
| parser.protocol; // => "http:" | |
| parser.hostname; // => "example.com" | |
| parser.port; // => "3000" | |
| parser.pathname; // => "/pathname/" | |
| parser.search; // => "?search=test" | |
| parser.hash; // => "#hash" | |
| parser.host; // => "example.com:3000" |
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
| /* Vertical fixed centering by inline-blocks */ | |
| .container { | |
| position: fixed; | |
| top: 0; | |
| bottom: 0; | |
| left: -9999px; | |
| } | |
| .container:after { | |
| content: ""; | |
| display: inline-block; |
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
| body { | |
| padding:20px; | |
| background:#FFF; | |
| color:#000; | |
| } | |
| #header { | |
| padding:10px; | |
| background:#51CAC8; | |
| } | |
| #container { |
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
| <table> | |
| <tr> | |
| <td>Внутри одного файла</td> | |
| <td>Распространяется на множество элементов</td> | |
| </tr> | |
| <tr> | |
| <td colspan="2"> | |
| <table> | |
| <tr> | |
| <td>Встроенные стили</td> |
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
| Назад в будущее | |
| «Назад в будущее» (англ. Back to the Future) — культовый фантастический фильм в трёх частях | |
| о путешествиях во времени, описывающий альтернативные реальности маленького американского | |
| городка Хилл-Вэлли и нескольких проживающих там семей, поставленный режиссёром Робертом Земекисом | |
| и спродюсированный Стивеном Спилбергом, Фрэнком Маршаллом и Кэтлин Кеннеди. | |
| Первый фильм вышел в 1985 году в кинотеатрах Соединённых Штатов и Канады и получил рейтинг PG | |
| от организации Motion Picture Association of America (MPAA) — «Детям рекомендуется просмотр | |
| совместно с родителями». Один из наиболее известных в СССР американских фильмов во второй |
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
| if not request.user.is_authenticated(): | |
| return redirect('/login/?next=%s' % request.path) | |
| else: | |
| for group in request.user.groups.values_list(): | |
| if (u'profsoux' in group) or request.user.is_staff: | |
| break | |
| else: | |
| if not request.user.is_staff: | |
| return render(request, 'denied.html', {}) |
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
| div | |
| { | |
| position: relative; | |
| width: 400px; | |
| height: 400px; | |
| border: 1px solid red; | |
| } |