-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (65 loc) · 1.48 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
* {
box-sizing: border-box;
}
body{
background: #ADA996; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #EAEAEA, #DBDBDB, #F2F2F2, #ADA996); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
margin: 0 20%;
}
@media screen and (max-width: 480px) {
body {margin: 10px; padding: 20px;}
.main-element-app{
width: 100%;
}
.answers {
margin-bottom: 5px;
column-gap: 2px;
font-size: 8px;
}
.individualAnswer{
padding: 1px;}
}
.main-element-app{
display: flex;
flex-direction: column;
width: 80%;
}
.button, .result{
border-radius: 10px;
font-weight: bold;
padding: 5px 10px;
cursor: pointer;
margin-bottom: 20px;
margin-top: 10px;
color: #6b34eb;
}
.resultAndButtonDiv{
display: flex;
justify-content: space-around;
align-items: center;
}
.question {
font-family: 'Karla', sans-serif;
font-size: 16px;
margin-bottom: 15px;
}
.answers {
display: flex;
justify-content: flex-start;
margin-bottom: 15px;
column-gap: 10px;
font-size: 12px;
font-weight: 500;
cursor: pointer;
}
.individualAnswer{
padding: 5px 15px 5px 15px;
border: 1px solid black;
border-radius: 15px;
cursor: pointer;
}
h2{
font-family: 'Karla', sans-serif;
align-self: center;
}