Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions week_four/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,27 @@ code {


/* ROUND TWO/ Q2 - What background colour will the element have? */
.quiz-item{

background-color: #C0FFEE;
}

.highlight{
background-color: #d3ed0b;
}


/* ROUND THREE/ Q3 - What colour will the element be? */

p[data-level="hard"]{

background-color: red;
}

.quiz-item{

background-color: orange;
}


/* =========================
Expand All @@ -105,6 +121,12 @@ code {
}

/* Visualize the box */
.form-box{
display:block;
border: 2px dashed red;
padding-bottom: 20px;
margin: 100px 30px 40px 10px;
}


/* Each field becomes a visible block with spacing */
Expand All @@ -123,6 +145,12 @@ code {
/* Inputs/selects: give visible borders so students can inspect sizing */
.field input,
.field select {

width: 100%;
border:2px solid #666;
padding: : 10px;
box-sizing: border-box;
border-radius: 2px;

}

Expand Down