-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (51 loc) · 1.16 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
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.form {
width: 95vw;
height: 95vh;
max-width: 800px;
}
.textbox-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 80%;
}
.textbox {
width: auto;
padding: 10px;
font-size: 5vh;
resize: none;
border: none;
text-align: center;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
-webkit-appearance: none; /* Add vendor prefix for Safari on iPadOS 12 */
}
.button-container {
display: flex;
justify-content: center;
align-items: center;
height: 20%;
}
button {
margin: 0 10px;
padding: 10px 20px; /* Add padding for better button appearance */
font-size: 18px; /* Add font size for better button appearance */
border: none;
border-radius: 4px; /* Add border radius for rounded corners */
background-color: #007bff; /* Add background color */
color: #fff; /* Add text color */
cursor: pointer;
-webkit-appearance: none; /* Add vendor prefix for Safari on iPadOS 12 */
}
button:hover {
background-color: #0056b3; /* Add hover background color */
}