-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
106 lines (93 loc) · 1.5 KB
/
index.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
/* BASIC */
ul {
padding: 0 0;
margin: 0 0;
}
.inline-list {
}
.inline-block {
display: inline;
}
/* HEADER */
.header {
background-color: #2d9bf0;
color: white;
}
.brand {
font-size: 1.6rem;
font-weight: 700;
padding: 1rem;
}
/* MAIN */
.main {
}
/* Answers Monitoring Section */
.activity-monitoring {
padding: 1rem;
}
.correct-answers {
}
.total-questions {
text-align: right;
}
/* Question Header Section */
.question-header {
text-align: center;
}
.question-title {
font-size: 2.2rem;
}
.question-category {
font-size: 1.25rem;
}
.question-description {
text-align: left;
margin: 1rem auto 0;
font-size: 0.9rem;
max-width: 676px;
background-color: #F6F5F7;
padding: 0.5rem 1.4rem;
}
.skip-button {
background-color: #2d9bf0;
border: #2d9bf0;
width: 676px;
margin: 0.6rem 0;
}
@media (max-width: 800px) {
.skip-button {
max-width: 200px;
margin: 1rem 0;
}
}
/* Answers proposition section */
.answer-container {
max-width: 676px;
margin: 2rem auto 0;
text-align: center;
border: 1px solid rgba(128, 128, 128, 0.18);
border-radius: 2px;
}
.characters-container {
padding: 7rem 0;
}
.character {
background-color: white;
border-radius: 2px;
border: 1px solid rgba(128, 128, 128, 0.43);
padding: 0.3rem 0.8rem;
box-shadow: 1px 1px 3px 0 #ccc;
font-weight: 600;
color: rgba(51, 46, 46, 0.58);
cursor: pointer;
}
.character:hover {
color: rgba(0, 0, 0, 0.58)
}
/* Answer proposition */
.answers-for-drag {
margin: 3rem 0;
}
.proposition-characters-container {
padding: 1.5rem 0;
}