-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
85 lines (70 loc) · 1.13 KB
/
style.css
File metadata and controls
85 lines (70 loc) · 1.13 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
79
80
81
82
83
84
85
body {
background-color: lightcyan;
color: whitesmoke;
}
*, ::after, ::before {
box-sizing: content-box;
}
.navbar-items {
width: 100%;
margin: 10px 0px;
padding-left: 0;
list-style-type: none;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
}
li {
padding: 0px 10px;
}
input {
width: 100%;
}
nav .btn {
color: whitesmoke;
}
nav .btn:hover {
color: green;
}
nav .btn.active {
color: lightsalmon;
}
nav .btn.focus, .btn:focus {
outline: 0;
box-shadow: none;
}
.container {
height: 500px;
}
.bars {
/* background-color: maroon; */
display: flex;
height: 100%;
justify-content: center;
}
.bar{
margin-left: 2px;
background-color: mediumorchid;
}
nav .btn:disabled {
cursor: default;
color: red;
}
.flowControl {
display: flex;
justify-content: center;
}
.flowControl .btn {
height: 40px;
width: 40px;
padding: 20px;
margin: 10px;
border-radius: 50%;
}
.flowControl .btn:disabled {
cursor: default;
color: #343a40;
background-color: gray;
border: gray;
}