-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (84 loc) · 1.71 KB
/
style.css
File metadata and controls
99 lines (84 loc) · 1.71 KB
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
*,
html, body {
padding: 0;
margin: 0;
}
@media screen and (max-width: 500px) {
.div-body {
background-color: #444;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.div-content {
display: flex;
flex-direction: column;
padding: 60px;
}
.p-question {
font-size: 18px;
padding: 20px;
font-weight: 400;
margin-left: 10px;
color: white
}
.div-answer {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 3px;
}
.input {
width: 170px;
height: 28px;
border-radius: 5px;
}
.button-send {
width: 165px;
height: 25px;
margin-top: 5px;
border-radius: 5px;
}
}
/* ini untuk screen besar */
@media screen and (min-width: 501px) {
.div-body {
background-color: #333;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.div-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: gray;
width: 325px;
height: 175px;
border: 2px black solid;
border-radius: 5px;
}
.p-question {
font-size: 20px;
margin-left: 19px;
}
.div-answer {
margin-top: 10px;
width: 280px;
height: 40px;
}
.input {
width: 190px;
height: 30px;
border-radius: 5px;
}
.button-send {
height: 30px;
width: 60px;
border-radius: 5px;
}
}