Update style.css
Browse files
style.css
CHANGED
|
@@ -1,28 +1,115 @@
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
h1 {
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
font-size: 15px;
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
}
|
| 17 |
|
| 18 |
-
.
|
| 19 |
-
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
.
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 3 |
+
background-color: #f4f4f4;
|
| 4 |
+
margin: 0;
|
| 5 |
+
padding: 0;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
.container {
|
| 9 |
+
width: 90%;
|
| 10 |
+
max-width: 800px;
|
| 11 |
+
margin: 50px auto;
|
| 12 |
+
background: #fff;
|
| 13 |
+
padding: 30px;
|
| 14 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
| 15 |
+
border-radius: 8px;
|
| 16 |
}
|
| 17 |
|
| 18 |
h1 {
|
| 19 |
+
text-align: center;
|
| 20 |
+
color: #333;
|
| 21 |
+
margin-bottom: 20px;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
h2 {
|
| 25 |
+
color: #555;
|
| 26 |
+
margin-bottom: 15px;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
.question {
|
| 30 |
+
margin-bottom: 20px;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.question p {
|
| 34 |
+
font-size: 1.1em;
|
| 35 |
+
margin-bottom: 10px;
|
| 36 |
+
color: #333;
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
label {
|
| 40 |
+
display: block;
|
| 41 |
+
margin-bottom: 8px;
|
| 42 |
+
font-size: 1em;
|
| 43 |
+
color: #555;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
input[type="radio"] {
|
| 47 |
+
margin-right: 10px;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
button {
|
| 51 |
+
padding: 10px 20px;
|
| 52 |
+
background-color: #5A67D8;
|
| 53 |
+
color: #fff;
|
| 54 |
+
border: none;
|
| 55 |
+
border-radius: 5px;
|
| 56 |
+
cursor: pointer;
|
| 57 |
+
font-size: 1em;
|
| 58 |
+
margin: 5px;
|
| 59 |
+
transition: background-color 0.3s ease;
|
| 60 |
}
|
| 61 |
|
| 62 |
+
button:hover {
|
| 63 |
+
background-color: #434190;
|
|
|
|
|
|
|
|
|
|
| 64 |
}
|
| 65 |
|
| 66 |
+
.next-button, .submit-button {
|
| 67 |
+
float: right;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
}
|
| 69 |
|
| 70 |
+
.prev-button {
|
| 71 |
+
float: left;
|
| 72 |
+
background-color: #A0AEC0;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.prev-button:hover {
|
| 76 |
+
background-color: #718096;
|
| 77 |
+
}
|
| 78 |
+
|
| 79 |
+
.clearfix::after {
|
| 80 |
+
content: "";
|
| 81 |
+
clear: both;
|
| 82 |
+
display: table;
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
#result-page {
|
| 86 |
+
text-align: center;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
#result-text {
|
| 90 |
+
text-align: left;
|
| 91 |
+
margin-bottom: 20px;
|
| 92 |
+
color: #333;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
#result-image {
|
| 96 |
+
max-width: 100%;
|
| 97 |
+
height: auto;
|
| 98 |
+
margin-bottom: 20px;
|
| 99 |
+
border-radius: 8px;
|
| 100 |
+
}
|
| 101 |
+
|
| 102 |
+
@media (max-width: 600px) {
|
| 103 |
+
.container {
|
| 104 |
+
padding: 20px;
|
| 105 |
+
}
|
| 106 |
+
|
| 107 |
+
button {
|
| 108 |
+
width: 100%;
|
| 109 |
+
margin: 10px 0;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
.next-button, .submit-button, .prev-button {
|
| 113 |
+
float: none;
|
| 114 |
+
}
|
| 115 |
}
|