-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (42 loc) · 860 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
.sentiment-box {
padding: 20px;
border-radius: 10px;
margin: 10px 0;
transition: all 0.3s ease;
}
.score-indicator {
font-size: 2.5rem;
font-weight: bold;
text-align: center;
padding: 20px;
border-radius: 50%;
width: 100px;
height: 100px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.history-item {
padding: 10px;
border-radius: 5px;
margin: 5px 0;
transition: background-color 0.3s ease;
}
.emotion-box {
padding: 10px;
border-radius: 5px;
margin: 5px 0;
transition: all 0.3s ease;
}
.stTextInput > div > div > input {
font-size: 16px;
padding: 10px;
}
.sentiment-chart {
margin-top: 20px;
padding: 15px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.8);
}