Please disable Adblockers and enable JavaScript for domain CEWebS.cs.univie.ac.at! We have NO ADS, but they may interfere with some of our course material.

Name: tests/vote.css 
1:
.flex-container {
2:
  padding: 1em;
3:
  margin: 1em;
4:
  list-style: none;
5:
  border: ridge;
6:
  display: -webkit-box;
7:
  display: -moz-box;
8:
  display: -ms-flexbox;
9:
  display: -webkit-flex;
10:
  display: flex;
11:
  -webkit-flex-flow: row wrap;
12:
  flex-flow: row wrap;
13:
  justify-content: space-around;
14:
}
15:
.flex-item {
16:
    margin: 1em;
17:
    order: 0;
18:
    flex: 0 1 10em;
19:
    align-self: auto;
20:
    text-align: center;
21:
    border: ridge;
22:
}
23:
.flex-item:nth-child(1) {
24:
    border: none;
25:
    order: 0;
26:
    flex: 0 1 100%;
27:
    align-self: auto;
28:
}
29:
.flex-item input {
30:
  width: 100%;
31:
 
32:
}