-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExpWeb_PairCmpr.css
70 lines (66 loc) · 1.15 KB
/
ExpWeb_PairCmpr.css
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
/* 実験WebPage created by Wakayama Univ. AMLAB */
/* 一対比較実験用CSS */
.flex{
display: flex;
width: 68%;
align-items: center;
margin: auto;
}
.flex .btn {
width: 100px;
}
/* Stepbar */
ol {
padding-inline-start: 0%;
}
.stepBar {
display: flex;
width: 55%;
position: relative;
margin: auto;
margin-top: -20px;
}
.stepBar li {
list-style: none;
position: relative;
width: 100%;
}
.stepBar li:after {
background: #DED7D5;
content: "";
width: calc(100% - 10px);
height: 2px;
position: absolute;
left: calc(-50% + 5px);
top: 4px;
}
.stepBar li:first-child:after {
display: none;
}
.stepBar li span {
background: #DED7D5;
color: #ffffff;
display: inline-block;
height: 10px;
margin-bottom: 10px;
width: 10px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
.illuminate span{
background: #DED7D5;
color: #ffffff;
display: inline-block;
padding: 0.6em;
/* margin-bottom: 5px; */
line-height: 24px;
width: 100px;
/* width: 80px; */
-moz-border-radius: 30%;
-webkit-border-radius: 30%;
border-radius: 30%;
}
.illuminate .visited span {
background: #f16b6f;
}