-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (55 loc) · 1.02 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 60vw;
height: 40vh;
}
.description {
font-size: 3vh;
text-align: center;
color: #333;
font-family: Arial, sans-serif;
}
.title {
font-size: 6vh;
text-align: center;
color: #333;
font-family: Arial, sans-serif;
}
textarea {
width: 100%;
height:90%;
font-size: 2vh;
padding: 10px;
border: 1px solid #ccc;
background-color: white;
justify-content:center;
font-family: 'Courier New', monospace;
}
/* Styling for buttons */
button {
padding: 2vh 3vw;
font-size: 1.5vw;
border: 1px solid #ccc;
background-color: #4CAF50;
color: white;
cursor: pointer;
margin: 2vh 1vw;
border-radius: 5px;
}
button:hover {
background-color: #45a049;
}
.buttons-top, .buttons-bottom {
display: flex;
justify-content: center;
gap: 1 vh;
margin-bottom: 1 vh;
}