-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 1.01 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
64
65
66
67
68
69
70
body {
background-color: #fdfdfd;
color: #121212;
font-family: Arial, sans-serif;
}
.page {
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
max-width: 900px;
margin: auto;
}
.title {
font-size: 2rem;
color: #0087f5;
}
.description {
font-size: 1.2rem;
margin-bottom: 2rem;
text-align: center;
}
.text-input {
width: 100%;
min-height: 30vh;
border-radius: 4px;
border: 1px solid #121212;
padding: 1rem;
color: #121212;
background-color: #f0f0f0;
}
.stats {
display: flex;
justify-content: space-around;
margin-top: 2rem;
font-size: 1.1rem;
gap: 2rem;
}
.tokens-visualized {
margin-top: 2rem;
padding-left: 0.25rem;
border-left: 2px solid #0087f5;
white-space: pre-wrap;
}
.tokens-raw {
color: #4caf50;
margin-top: 2rem;
max-width: 100%;
white-space: pre-wrap;
}
.tokens-visualized span {
border: solid 1px white;
}
.tokens-visualized span:hover {
border: solid 1px white;
filter: brightness(120%);
}
a {
color: #0087f5;
}