Update index.html
Browse files- index.html +38 -9
index.html
CHANGED
@@ -6,25 +6,47 @@
|
|
6 |
<title>May 2024 Hugginess Survey Results</title>
|
7 |
<style>
|
8 |
body {
|
9 |
-
font-family:
|
10 |
-
margin:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
}
|
12 |
-
|
13 |
-
color:
|
|
|
|
|
|
|
|
|
14 |
}
|
15 |
.emoji {
|
16 |
-
font-size:
|
17 |
}
|
18 |
.section {
|
19 |
-
margin-bottom:
|
|
|
|
|
|
|
|
|
20 |
}
|
21 |
img {
|
22 |
-
|
23 |
-
|
|
|
|
|
24 |
}
|
25 |
.nps-score-breakdown {
|
26 |
max-width: 400px;
|
27 |
-
width: 100%;
|
28 |
}
|
29 |
.highlight {
|
30 |
font-weight: bold;
|
@@ -40,6 +62,13 @@
|
|
40 |
font-weight: bold;
|
41 |
font-size: 1.2em;
|
42 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
</style>
|
44 |
</head>
|
45 |
<body>
|
|
|
6 |
<title>May 2024 Hugginess Survey Results</title>
|
7 |
<style>
|
8 |
body {
|
9 |
+
font-family: 'Georgia', serif;
|
10 |
+
margin: 40px auto;
|
11 |
+
max-width: 800px;
|
12 |
+
padding: 20px;
|
13 |
+
line-height: 1.6;
|
14 |
+
background: #f7f7f7;
|
15 |
+
border: 1px solid #ccc;
|
16 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
17 |
+
}
|
18 |
+
h1 {
|
19 |
+
color: #333;
|
20 |
+
border-bottom: 2px solid #333;
|
21 |
+
padding-bottom: 10px;
|
22 |
+
margin-bottom: 20px;
|
23 |
+
font-size: 2.4em;
|
24 |
}
|
25 |
+
h2 {
|
26 |
+
color: #666;
|
27 |
+
border-bottom: 1px solid #ddd;
|
28 |
+
padding-bottom: 5px;
|
29 |
+
margin-bottom: 10px;
|
30 |
+
font-size: 1.8em;
|
31 |
}
|
32 |
.emoji {
|
33 |
+
font-size: 1.5em;
|
34 |
}
|
35 |
.section {
|
36 |
+
margin-bottom: 40px;
|
37 |
+
padding: 20px;
|
38 |
+
background: #fff;
|
39 |
+
border: 1px solid #ddd;
|
40 |
+
box-shadow: 0 0 5px rgba(0,0,0,0.05);
|
41 |
}
|
42 |
img {
|
43 |
+
display: block;
|
44 |
+
margin: 0 auto 20px;
|
45 |
+
max-width: 100%;
|
46 |
+
height: auto;
|
47 |
}
|
48 |
.nps-score-breakdown {
|
49 |
max-width: 400px;
|
|
|
50 |
}
|
51 |
.highlight {
|
52 |
font-weight: bold;
|
|
|
62 |
font-weight: bold;
|
63 |
font-size: 1.2em;
|
64 |
}
|
65 |
+
ul {
|
66 |
+
padding-left: 20px;
|
67 |
+
margin-top: 10px;
|
68 |
+
}
|
69 |
+
ul li {
|
70 |
+
margin-bottom: 5px;
|
71 |
+
}
|
72 |
</style>
|
73 |
</head>
|
74 |
<body>
|