Random Quote Generator - Part 3 | AJAX Tutorial | MySQL Select Statement

preview_player
Показать описание
``````````````````````````````````````````````````````````````````````````````````````````````






``````````````````````````````````````````````````````````````````````````````````````````````
Рекомендации по теме
Комментарии
Автор

Thank you! Followed all three tutorials and it works like a charm.

kendallshearman
Автор

Wow, that's great, I watched all three parts in a gulp. Very well demonstrated.

DanielePais
Автор

Thank you very much for these 3 tutorials..and for your teaching skills ... Ciao from Italy

davideboeuccvalbusa
Автор

Wonderful tutorial. Voice is also very good. Kudos!

Kodeispoetry
Автор

body{
font-family: 'Roboto', sans-serif;
color: #000;
}


#container {
width: 1500px;
margin: 50px auto;
padding: 20px;
width: 50%;
max-height: 800px;
}

#container h2 {
text-align: center;
color: #045;
}

#buttonContainer {
text-align: center;
}
#quoteContainer{
width: 75%;
background: #fff;
padding: 10px;
margin: 0 auto;
font-size: 1.1rem;
margin: 2rem auto;
}

#quoteAuthor{

margin: 0 auto;
text-align: center;
font-weight: bold;
font-size: 1.5rem;
font-style: italic;
}

#quoteButton {
background-color: #00bcd4;
color: #fff;
font-size: large;
padding: 0.4rem 2.5rem;
}

[type="radio"]:checked + label:after{
width: 12px;
height: 12px;
position: absolute;
top: 4px;
left: 4px;
border-radius: 100%;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;


}


[type="radio"]:not(:checked) + Label:after{
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);

}

[type="radio"]:checked + label:after{
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);

}

normanlove