-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
56 lines (48 loc) · 896 Bytes
/
index.css
File metadata and controls
56 lines (48 loc) · 896 Bytes
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
*,
html , body {
padding: 0;
margin: 0;
}
.div-content {
background-color: rgb(105, 58, 25);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.div-container {
background-color: rgb(147, 69, 14);
height: 25%;
width: 40%;
border-radius: 12px;
display: flex;
flex-direction: column;
}
.div-question {
display: flex;
justify-content: center;
align-items: center;
height: 65%;
font-size: larger;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-weight: 500;
}
.div-answer {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
}
.input-answer {
height: 25px;
width: 50%;
}
.button-answer {
height: 32px;
width: 60px;
border: rgb(156, 70, 9) 2px solid;
color: white;
background-color: rgb(208, 115, 48);
border-radius: 10px;
}