-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlow.css
107 lines (92 loc) · 1.58 KB
/
low.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
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
106
107
body {
/*background-color: #dddddd;*/
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
}
div {
padding: 5px;
}
div#machines {
overflow: hidden;
}
/* Red */
a:link {
background-color: #f44336;
color: white;
padding: 3px 5px;
text-align: center;
text-decoration: none;
font-family: monospace;
display: inline-block;
line-height: 14px;
}
/* Green */
a:visited{
background-color: #66dd66;
color: black;
padding: 3px 5px;
text-align: center;
text-decoration: none;
font-family: monospace;
display: inline-block;
line-height: 14px;
}
a:hover, a:active {
background-color: gray;
color: black;
font-family: monospace;
}
div.floater {
float: left;
background-color: #dddddd;
margin-left: 5px;
margin-top: 5px;
height: 75px;
width: 75px;
}
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
top: -5px;
left: 105%;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
.flex-container {
padding: 0;
margin: 0;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
/*-webkit-flex-flow: row wrap;*/
justify-content: space-around;
}
.flex-item {
background: tomato;
padding: 5px;
width: 200px;
height: 150px;
margin-top: 10px;
line-height: 150px;
color: white;
font-weight: bold;
font-size: 3em;
text-align: center;
}