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
/* | |
1em = 100% | |
1ex = 1/2em или высоте x | |
*/ | |
body | |
{ | |
font-size: 1em; | |
} |
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 | |
{ | |
/* | |
font-family != font.ttf, | |
но может состоять из одного шрфита | |
не забывать про кавычки | |
если есть пробел в названии | |
*/ | |
font-family: Helvetica, sans-serif; |
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 | |
{ | |
font-family: Helvetica, sans-serif; | |
font-weight: 100; /* 400 = normal */ | |
/* | |
для того, чтобы подключить такой внешний шрифт, | |
нужно скачать 2,9MB | |
*/ | |
} |
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 | |
{ | |
font-family: Helvetica, sans-serif; | |
font-weight: 100; | |
font-size: 10em; | |
} | |
span | |
{ |
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 | |
{ | |
font-family: Helvetica, sans-serif; | |
font-weight: 100; | |
font-size: 10em; | |
} | |
span | |
{ |
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 | |
{ | |
font-family: 'Times New Roman', sans-serif; | |
font-weight: 100; | |
font-size: 10em; | |
} | |
span | |
{ |
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 | |
{ | |
font: bold italic small-caps 10em/0.5 Helvetica, sans-serif; | |
} | |
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
/* http://www.google.com/webfonts */ | |
@font-face { | |
font-family: 'Oleo Script'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('Oleo Script'), local('OleoScript-Regular'), url('http://themes.googleusercontent.com/static/fonts/oleoscript/v1/_weQNDK6Uf40CiGFKBBUjrrIa-7acMAeDBVuclsi6Gc.woff') format('woff'); | |
} | |
body | |
{ |
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
input | |
{ | |
/* попробуй убрать/вернуть стили */ | |
font-size: 150px; | |
width: 50px; | |
height: 50px | |
} |
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
input | |
{ | |
font-size: 550px !important; | |
height: 200px !important; | |
} |