-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbloowizard.css
More file actions
78 lines (67 loc) · 1.5 KB
/
bloowizard.css
File metadata and controls
78 lines (67 loc) · 1.5 KB
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
:root{
--blue0:#dae7f5;
--blue1:#b0c7df;
--blue2:#6486aa;
--blue3:#1268c4;
--grey1:#929292;
}
.bloowizard{
border:1px solid var(--blue1);
padding:20px;
}
.bloowizard .bloo-head{
margin: 0 0 25px 0;
}
.bloowizard .bloo-head > ul {
list-style-type: none;
margin-block-start: 0;
margin-block-end: 0;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 0;
display: flex;
}
.bloowizard .bloo-head > ul > li {
display: inline-block;
flex: 1;
text-align: left;
}
.bloowizard .bloo-head > ul > li > a{
text-decoration: none;
color: var(--blue2);
border-bottom: 3px solid var(--blue1);
display: block;
margin-right: 10px;
padding:10px 15px;
}
.bloowizard .bloo-head > ul > li > a.step-current{
font-weight: bold;
color: var(--blue3);
border-color: var(--blue3);
}
.bloowizard .bloo-body{
color: var(--grey1);
margin: 0 0 15px 0;
}
.bloowizard .bloo-next, .bloowizard .bloo-prev, .bloowizard .bloo-finish{
margin: 0 0 0 10px;
border:1px solid var(--blue1);
color: var(--blue2);
background: #FFF;
padding:5px 10px;
cursor: pointer;
float: right;
}
.bloowizard .bloo-next:hover, .bloowizard .bloo-prev:hover, .bloowizard .bloo-finish:hover{
background: var(--blue0);
}
.bloowizard::after{
content: "";
display: table;
clear: both;
}
@media (max-width: 600px) {
.bloowizard .bloo-head > ul{
flex-direction:column;
}
}