You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
956 B
CSS
70 lines
956 B
CSS
/* Type Selector */
|
|
h1 {
|
|
color: yellow !important;
|
|
text-align: center;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
section {
|
|
height: 100vh;
|
|
text-align: center;
|
|
}
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
ol {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
/* Universal Selector */
|
|
* {
|
|
font-family: 'Courier New', Courier, monospace;
|
|
font-size: 20px;
|
|
}
|
|
body {
|
|
background-color: skyblue;
|
|
|
|
}
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
nav {
|
|
background-color: white;
|
|
}
|
|
div {
|
|
float: right;
|
|
}
|
|
#zuitt-motto {
|
|
letter-spacing: 5px;
|
|
}
|
|
|
|
|
|
.offering-item {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h3 {
|
|
letter-spacing: 20px;
|
|
}
|
|
/* Adjacent sibling selector */
|
|
h3 + img {
|
|
height: 300px;
|
|
width: 300px;
|
|
border-radius: 150px;
|
|
}
|
|
|
|
/* Descendant Selector */
|
|
/* Selector selector */
|
|
#bootcamp-learning-list li {
|
|
color: #075966;
|
|
}
|
|
|
|
/* General Sibling Selector */
|
|
/* Selector ~ selector */
|
|
h2 ~ a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.modules {
|
|
letter-spacing: 3px;
|
|
} |