-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (73 loc) · 1.32 KB
/
style.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
.bg1{
background-image: url('./images/background/1.png');
}
.bg2{
background-image: url('./images/background/2.png');
}
.bg3{
background-image: url('./images/background/3.png');
}
div.checked{
background-color: #cfe3ff;
}
.unchecked{
opacity: 0.6;
}
.choice-grid{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.choice-grid div{
background-color: #f4f4f4;
border: 1px solid #dcdcdc;
padding: 10px 10px;
margin: 0px 0px 20px 0px;
width: calc(32.5% - 22px);
}
.choice-grid img{
width: 100%;
}
.choice-grid img.checkbox{
display: block;
}
.reset_button{
background-color: #cecece;
color: black;
height: 50px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.reset_button:hover{
background-color: #e0e0e0;
}
.result h1{
margin: 0px;
}
.result{
margin: 20px 0px;
padding: 20px;
}
@media (max-width: 700px){
article {
width: 95%;
}
header div span {
display: none;
}
.question-name{
height: 200px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.question-name h1{
font-size: 1.9rem;
}
}
@media(max-width: 500px){
.choice-grid div {
width: calc(49% - 22px);
}
}