-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (85 loc) · 1.69 KB
/
styles.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
/*Positioning of Group A,B,C */
* {
font-family: monospace;
}
body {
background-color: rgba(0, 0, 0, 0.9);
}
.group-container {
display: flex;
justify-content: space-evenly;
align-items: baseline;
}
/* Content of Group A,B,C*/
.groups {
display: flex;
justify-content: center;
border: 2px solid rgb(255, 255, 255);
/* border-radius: 16px; */
margin-top: 15px;
margin-bottom: 10px;
width: 100vw;
padding: 10px;
background-color: #000000;
color: white;
}
/*Positioning of Prompt Box */
.textBox-container {
display: flex;
justify-content: center;
/* align-items: baseline; */
border: 2px solid rgb(255, 255, 255);
border-radius: 10px;
margin-top: 15px;
margin-bottom: 15px;
/* height: 10vh; */
max-width: 70%;
padding: 10vw;
margin: auto;
background-color: #000000;
}
/*Content of Prompt Box */
#textBox {
display: flex;
background-color: #000000;
color: white;
font-size: x-large;
font-family: monospace;
}
/*Positioning of Choice Buttons */
.choices-container {
display: flex;
justify-content: space-evenly;
align-items: baseline;
flex-direction: column;
}
#choice_expanded {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 10vh;
color: white;
}
.choice_expanded p {
max-width: 600px; /* Adjust the maximum width based on your design */
margin: 0 auto;
color: white;
}
.button {
display: block;
margin: 15px auto;
width: 50%;
border: 2px solid rgb(44, 44, 44);
padding: 5px 50px;
border-radius: 8px;
text-decoration: none;
background: #3c3c3c;
transition: 0.2s;
font-size: 14px;
color: white;
}
.button:hover {
transform: translateY(-7px);
transform: scale(1.1);
}