forked from Ushien/Hackaton2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
106 lines (90 loc) · 1.54 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
95
96
97
98
99
100
101
102
103
104
105
106
body {
margin: 0;
background-color: white;
display: flex;
justify-content: center;
overflow: hidden;
}
p {
margin: 0;
}
#centerContainer {
width: 56.25vh; /* 16:9 aspect ratio */
background-color: #42c99c;
}
#upperBar {
display: flex;
flex-direction: row;
justify-content: space-between;
height: 12.5%;
padding: 2vh;
}
.upperButton {
height: 100%;
background-color: transparent;
border-style: solid;
border-radius: 1.5vh;
border-color: white;
border-width: 3px;
}
#dialogContainer {
height: 30%;
display: flex;
justify-content: center;
font-size: 20px;
}
#buddyContainer {
height: 27.5%;
display: flex;
justify-content: center;
align-items: center;
}
#buddy {
height: 100%;
}
#choiceContainer {
height: 30%;
display: flex;
flex-direction: column;
align-items: center;
}
.choice {
width: 80%;
margin: 1vh;
background-color:#fff;
color: #0e0e2e;
border-color: white;
font-size: 20px;
}
#dialogBox {
width: 100%;
margin: 5vh;
background: white;
border-radius: 1vh;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
padding: 1vh;
}
.small-modal {
width: 40vh;
}
.modal-body {
margin-left: auto;
margin-right: auto;
}
.form-group {
font-size: 20px;
}
.form-control {
border-radius: 2vh;
font-size: 20px;
}
.modal-content {
background: #42c99c;
}
.doneButton {
background-color: white;
border-radius: 1vh;
}