-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
71 lines (65 loc) · 968 Bytes
/
index.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
div, span, li, ul, h1, html, body {
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
overflow: hidden;
width: 100%;
}
.canvas {
background: #efefef;
height: 100%;
position: relative;
}
.x-axis {
background: black;
height: 1px;
left: 0;
position: absolute;
top: 50%;
width: 100%;
}
.min, .max {
position: absolute;
}
.x-axis .max {
right: 0;
}
.y-axis .max {
bottom: 0;
}
.y-axis {
background: black;
height: 100%;
left: 50%;
position: absolute;
top: 0;
width: 1px;
}
ul {
left: 10px;
position: absolute;
top: 10px;
}
li {
background-color: coral;
border-radius: 50%;
border: 1px solid maroon;
display: table-cell;
font-size: 12px;
height: 60px;
left: 0;
list-style: none;
padding-top: 20px;
position: absolute;
text-align: center;
top: 0;
opacity: .8;
width: 60px;
}
li.frontend {
background-color: cyan;
}