-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
48 lines (44 loc) · 902 Bytes
/
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
.Text-center {
text-align: center;
}
.button {
width: 80px;
height: 80px;
font-size: x-large;
padding: 2rem;
border: 2px solid black;
border-radius: 9px;
margin: 0.1rem;
cursor: pointer;
/* Your existing styles */
display: flex;
justify-content: center;
align-items: center;
/* Additional styles */
text-align: center;
}
.button:hover {
background: grey;
color: white;
}
.row {
display: flex;
justify-content: center;
margin: .25rem 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
background-color: cadetblue;
padding: 1rem;
}
.textBox{
font-size: 27px;
text-align: right;
margin-bottom: 5px;
border: 2px solid black;
border-radius: 15px;
padding-top: 50px;
padding-bottom: 50px;
}