All language subtitles for 13. Adding Third Party CSS6

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French Download
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:01,050 --> 00:00:05,140 In this video we're going to start to add in some additional styling to our application rather than 2 00:00:05,140 --> 00:00:07,210 writing out a lot of CSX from scratch. 3 00:00:07,210 --> 00:00:12,970 We're going to instead use a third party CSX library to handle a lot of styling for us inside this course. 4 00:00:12,970 --> 00:00:16,870 Let's first begin by taking a look at the documentation for the styling library that we're going to 5 00:00:16,870 --> 00:00:19,180 use instead of a new browser tab. 6 00:00:19,180 --> 00:00:25,550 I'm going to navigate to Boma dot I owe Omar IO is a free styling library. 7 00:00:25,580 --> 00:00:30,410 This is very similar to the materials CSX project or the bootstrap CSX project. 8 00:00:30,440 --> 00:00:36,640 If you are familiar with those at all there is effectively no big difference between Boma and say bootstrap. 9 00:00:36,680 --> 00:00:38,720 They're just different styling libraries. 10 00:00:38,780 --> 00:00:43,190 I just decided to use Beaumont inside this course because I think it naturally looks pretty nice and 11 00:00:43,190 --> 00:00:49,190 because bootstrap is kind of overused into trials in general so I figured hey let's do something else. 12 00:00:49,190 --> 00:00:53,660 Let's take a look at the documentation on this page and understand what we're going to more or less 13 00:00:53,660 --> 00:00:56,530 turn our form into on the top left hand side. 14 00:00:56,540 --> 00:01:01,100 I'm going to find the link to the documentation and on the right hand side I'll find this section called 15 00:01:01,160 --> 00:01:09,240 form and then inside there click the subsection called General though on this page we can scroll down 16 00:01:09,240 --> 00:01:15,200 a little bit and see an example of a form built with almost the SS so we read write out some each team 17 00:01:15,200 --> 00:01:17,610 L and class names that look like this right here. 18 00:01:17,610 --> 00:01:23,160 It will give us a form that looks like that all we have to do is include the Belmont C Ss file inside 19 00:01:23,160 --> 00:01:24,280 of our project. 20 00:01:24,390 --> 00:01:28,970 So let's figure out exactly how we do that at the very top of this page. 21 00:01:29,050 --> 00:01:34,370 I'm gonna find at the very top right hand side the overview section and then inside there I'll find 22 00:01:34,370 --> 00:01:41,190 the start link this lists out three different ways of adding Bullseye into our project. 23 00:01:41,190 --> 00:01:47,460 The recommended way is to install Belmont using NPM or the node package manager so that is of course 24 00:01:47,460 --> 00:01:50,220 is what we are going to do inside of our project. 25 00:01:50,310 --> 00:01:54,870 We have to open up a terminal window inside of our project directory and we have to run that command 26 00:01:54,870 --> 00:01:58,040 right there to install Bouma into our project. 27 00:01:58,080 --> 00:02:00,100 Let's do that right now. 28 00:02:00,180 --> 00:02:02,220 I'm gonna go over to my terminal. 29 00:02:02,310 --> 00:02:05,220 I'm going to open up a second terminal window. 30 00:02:05,280 --> 00:02:07,350 I've now got two terminal windows open. 31 00:02:07,350 --> 00:02:11,970 I've got the original one that it's running my angular developing server and this new one that I just 32 00:02:11,970 --> 00:02:15,000 created inside of my new terminal window. 33 00:02:15,000 --> 00:02:18,240 I'm going to make sure that I'm inside of my P.W. directory. 34 00:02:18,240 --> 00:02:22,720 I have to be inside my project directory to install Boma once I'm inside there. 35 00:02:22,800 --> 00:02:27,990 I will then run and payment stall Wilma. 36 00:02:28,020 --> 00:02:28,290 All right. 37 00:02:28,320 --> 00:02:30,140 So this is a very small package. 38 00:02:30,180 --> 00:02:32,830 So it will install in just a matter of seconds. 39 00:02:33,010 --> 00:02:33,960 And that looks good. 40 00:02:34,020 --> 00:02:35,910 I'll installed. 41 00:02:36,160 --> 00:02:39,420 I'm not going to flip back over to my application side the browser. 42 00:02:39,560 --> 00:02:44,170 So once I go over there I can refresh the page and you'll notice that everything looks exactly identical 43 00:02:44,170 --> 00:02:45,260 to how it worked before. 44 00:02:45,910 --> 00:02:50,490 So it turns out that the boma install directions right here are a little bit misleading. 45 00:02:50,530 --> 00:02:56,410 They really just tell us half the story when we run npm install Boma that gives us the CSX files or 46 00:02:56,410 --> 00:03:02,050 in other words they get installed into our project directory but they do not get kind of magically wired 47 00:03:02,050 --> 00:03:03,420 into our project. 48 00:03:03,490 --> 00:03:08,860 Instead it is up to you and I to figure out how to include those installed CSX files with our angular 49 00:03:08,860 --> 00:03:10,230 code. 50 00:03:10,240 --> 00:03:11,360 Let's take a pause right here. 51 00:03:11,380 --> 00:03:15,820 We'll come back the next video and figure out how we can tell angular to work with this newly installed 52 00:03:15,950 --> 00:03:17,160 almost the SS library. 5416

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.