-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (59 loc) · 1.17 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
body {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
font-family: Tahoma, sans-serif;
background: linear-gradient(45deg, #00A86B, #A8D5BA);
}
#container {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin-top: 200px;
background-color: 00A86B;
padding: 20px;
border: none;
border-radius: 40px;
width: 400px;
}
#text-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
#definition {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin-top: 200px;
background-color: 00A86B;
padding: 20px;
border: none;
border-radius: 40px;
width: 400px;
}
#text-input {
padding: 10px;
border: none;
border-radius: 6px;
font-size: 1.2rem;
}
#check-btn {
width: 200px;
padding: 10px;
background-color: #C0FF00;
border: none;
border-radius: 12px;
font-size: 1.3rem;
font-weight: bold;
}
#check-btn:hover {
background-color: #90EE90;
}
#result {
font-size: 1.5rem;
}