Spaces:
Runtime error
Runtime error
File size: 1,475 Bytes
5325fcc |
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 |
body {
background-color: #fbfbfb;
margin: 0;
}
select, input {
font-size: 1em;
max-width: 100%;
}
.xp_name {
font-family: monospace;
}
.simple_form {
background-color: #dddddd;
padding: 1em;
margin: 0.5em;
}
textarea {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.rating {
background-color: grey;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 8px;
padding-right: 8px;
margin-right: 2px;
cursor:pointer;
}
.rating_selected {
background-color: purple;
}
.content {
font-family: sans-serif;
background-color: #f6f6f6;
padding: 40px;
margin: 0 auto;
max-width: 1000px;
}
.track label {
padding-top: 10px;
padding-bottom: 10px;
}
.track {
padding: 15px;
margin: 5px;
background-color: #c8c8c8;
}
.submit-big {
width:400px;
height:30px;
font-size: 20px;
}
.error {
color: red;
}
.ratings {
margin-left: 10px;
}
.important {
font-weight: bold;
}
.survey {
margin-bottom: 100px;
}
.success {
color: #25901b;
font-weight: bold;
}
.warning {
color: #8a1f19;
font-weight: bold;
}
.track>section {
display: flex;
align-items: center;
}
.prompt {
display: flex;
align-items: center;
}
.track>section>div {
padding-left: 10px;
}
audio {
max-width: 280px;
max-height: 40px;
margin-left: 10px;
margin-right: 10px;
}
.special {
font-weight: bold;
color: #2c2c2c;
}
|