-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
executable file
·126 lines (123 loc) · 2.16 KB
/
styles.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
background-color: #282828;
color: #fff;
margin: 0 auto;
margin-top: 50px;
text-align: center;
font-family: 'Helvetica', sans-serif;
line-height: 1.5em;
}
header.navigation {
background-color: #333;
font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
height: 50px;
width: 100%;
z-index: 999;
margin: 0 auto 1em;
text-align: center;
position: fixed;
top: 0;
bottom: 0;
right: 0;
}
header.navigation a {
text-decoration: none;
display: inline-block;
margin-top: .4em;
max-height: 50px;
font-size: 1.75em;
color: #27ae60;
}
input, button {
border-radius: 20px;
padding: 5px;
}
input {
font-weight:300;
letter-spacing:2px;
font-size:.95em;
color:#000;
background:#fff;
border:1px solid #000;
width:80%;
height:20px;
margin-right:.5em;
margin-top: 20px;
}
button {
margin-top: 20px;
color:#fff;
background:#2ebd59;
text-transform:uppercase;
letter-spacing:2px;
font-size: .85em;
line-height: 1;
border-radius: 20px;
padding: 10px 30px 10px;
border-width:0;
font-weight: 500;
text-align: center;
vertical-align: middle;
cursor: pointer;
}
h1 {
padding-top: 20px;
}
svg {
margin: 0 auto;
display: block;
background-color: #282828;
}
#uri {
display: block;
color:#2AB759;
cursor: pointer;
font-size: 25px;
margin: 15px auto;
}
#message {
font-weight: 300;
}
#chart {
width: 100%;
height: 100%;
position: absolute;
}
.links line {
stroke: #999;
stroke-opacity: 0.6;
}
.links line:hover {
cursor: pointer;
stroke: #fff;
stroke-width: 4px;
}
.nodes circle {
stroke: #2AB759;
stroke-width: 3px;
}
.nodes circle:hover {
cursor: pointer;
fill: #333;
}
div.tooltip {
color: white;
position: absolute;
text-align: center;
min-width: 50px;
min-height: 18px;
padding: 6px;
font: 15px;
background: #666;
border: 0px;
border-radius: 5px;
pointer-events: none;
}
@media (min-width:700px){
input {
width: 400px;
}
button{
margin-top: 0;
}
}