File size: 1,784 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.tabs input[type=radio] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.tabs {
  width: 80%;
  position: relative;
  padding: 0;
  margin: 40px auto;
}
.exercise{
  float: left;
  padding-top: 5px;
  margin-right: 3px;
}
ul.tabs>li {
  list-style-type: none;
}
.tabs label {
  display: block;
  padding: 10px 20px;
  border-radius: 2px 2px 0 0;
  color: white;
  font-size: 15px;
  font-weight: normal;
  background: #C41D47;
  cursor: pointer;
  position: relative;
  top: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabs label:hover {
  background: #444444;
  top: 0;
}

[id^=tab]:checked + label {
  background: #444444;
  color: white;
  top: 0;
}

[id^=tab]:checked ~ [id^=tab-content] {
  display: block;
}
.tab-content{
  z-index: 2;
  display: none;
  text-align: left;
  width: 100%;
  font-size: 20px;
  line-height: 140%;
  padding-top: 10px;
  background: #AB1C40;
  padding: 12px;
  color: white;
  position: absolute;
  top: 53px;
  margin-top: 50px;
  left: 0;
  box-sizing: border-box;
  -webkit-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.tab-content ul li {
  cursor: pointer;
}
.tab-content ul li.selected {
  color: #444444;
}
.tab-content ul li.completed {
  color: #440000;
  text-decoration: line-through;
}
@media (min-width: 1565px) {
  .tab-content{
    top:0px;
    margin-top:53px;
  }
}
@media (max-width: 840px) {
  .tab-content{
    top:0px;
    margin-top:153px;
  }
}
@media (max-width: 653px) {
  .tab-content{
    top:0px;
    margin-top:203px;
  }
}
@media (max-width: 443px) {
  .tab-content{
    top:0px;
    margin-top:353px;
  }
}