-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (42 loc) · 901 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
49
50
51
52
53
body {
font-family: Arial, sans-serif;
background-color: lightsteelblue;
}
.content {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #FFAA00;
border-radius: 10px;
padding: 5% 10%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: stretch;
justify-content: center;
gap: 5vh;
}
.content * {
width: 60vw;
height: 25vh;
}
#generate_button {
background-color: #FF7400;
border: none;
border-radius: 100px;
font-family: Arial, sans-serif;
font-weight: bold;
font-size: 500%;
color: #FFAA64;
cursor: pointer;
}
.clicked {
background-color: #FF0000 !important;
color: #FF3939 !important;
}
#generated_text {
border: none;
text-align: center;
font-size: 4.5vh;
}