Webbserver - Love Blomberg

Show sourcecode

The following files exists in this folder. Click to view.

public_html/gamla-kurser/webbutv1/ovningar/css/

bento_grid.css
css_ovning-flexbox.css
css_ovning10.css
css_ovning11.css
css_ovning3.css
css_ovning8a.css
css_ovning8b.css
css_ovning9.css
css_ovning9_alt.css

css_ovning11.css

72 lines ASCII Windows (CRLF)
#textbox {
  width: 50%;
  height: 200px;
  border: 1px solid black;
  padding: 1%;
}

#copybox {
  border: 1px solid black;
  width: 50%;
  padding: 1%;
}

#name {
  width: 50%;
}

#name:hover {
  background-color: red;
}

button:hover {
  cursor: pointer;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.blue {
  background-color: blue;
  width: 100px;
  height: 100px;
  border: 2px solid black;
}

.red {
  background-color: red;
  width: 100px;
  height: 100px;
  border: 2px solid black;
}

.green {
  background-color: green;
  width: 100px;
  height: 100px;
  border: 2px solid black;
}

#redbutton {
  background-color: red;
  color: white;
  border: 1px solid black;
  padding: 1%;
}

#bluebutton {
  background-color: blue;
  color: white;
  border: 1px solid black;
  padding: 1%;
}

#greenbutton {
  background-color: green;
  color: white;
  border: 1px solid black;
  padding: 1%;
}