-
Notifications
You must be signed in to change notification settings - Fork 1
/
globalResult.html
119 lines (106 loc) · 3.29 KB
/
globalResult.html
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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.bundle.min.js"></script>
<script src="https://raw.github.com/emn178/Chart.PieceLabel.js/master/build/Chart.PieceLabel.min.js"></script>
<style>
body {
background-color: #efefef;
margin: 0;
padding: 0;
color: #3d4451;
font-family: 'Open Sans', sans-serif;
}
header {
background-color: #fff;
padding: 1px 0px;
box-shadow: 0 1px 6px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.24);
}
header h1 {
text-align: center;
}
#content {
margin-top:10px;
max-width: 960px;
margin-left: auto;
margin-right: auto;
}
h2.headline {
text-align: center;
color: #e8676b;
margin-bottom: 20px;
}
h1.result {
text-align: center;
}
h1.result.noImage{
margin-top:100px;
}
h2{
text-align: center;
margin-bottom: 0px;
margin-top: 0px;
}
h3.splitter {
text-align: center;
}
.progressContainer {
width: 80%;
background-color: #3d4451;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
}
.progressContainer span.progress {
display: block;
background-color: #e8676b;
height: 40px;
font-family: 'Open Sans', sans-serif;
color: #fff;
font-size: 34px;
text-align: right;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
footer{
position: fixed;
bottom: 0;
width: 100%;
height: 40px;
background-color: #fff;
text-align: center;
box-shadow: 0 1px 6px rgba(0,0,0,.12), 0 1px 4px rgba(0,0,0,.24);
}
footer h4 {
vertical-align: middle;
margin: 10px 0;
}
footer span {
color: #e8676b;
font-family: initial;
}
img {
height: 100px;
border-radius: 50%;
display: block;
margin-left: auto;
margin-right: auto;
}
#chart{
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<header>
<h1>What kind of developer are you?</h1>
</header>
<div id="content">
</div>
<footer>
<h4>Made with <span>❤</span> by Sebastian Grebe | sebastian-grebe.com</h4>
</footer>
</body>
</html>