-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (73 loc) · 1.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
font-family: sans-serif;
margin: 0;
padding-left: 30px; /* Added padding-left */
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 1rem;
padding-left: 20px; /* Added padding-left */
}
h1 {
font-size: 2rem;
margin-top: 2rem;
margin-bottom: 1rem;
}
form label {
display: block;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
form input[type="text"],
form textarea {
font-size: 1.2rem;
padding: 0.5rem;
margin-bottom: 1rem;
border-radius: 0.5rem;
border: 2px solid #ccc;
}
form button[type="submit"] {
font-size: 1.2rem;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
background-color: #0077cc;
color: #fff;
border: none;
cursor: pointer;
transition: all 0.2s;
}
form button[type="submit"]:hover {
background-color: #005ea0;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 2rem;
}
table th,
table td {
font-size: 1.2rem;
padding: 0.5rem;
text-align: left;
border: 1px solid #ccc;
}
table th {
background-color: #f2f2f2;
}
tbody tr:hover {
background-color: #f2f2f2;
}
#token-counts {
position: absolute;
top: 20px;
right: 20px;
}
.text-box {
font-size: 1.2rem;
padding: 0.5rem;
margin-bottom: 1rem;
border-radius: 0.5rem;
border: 2px solid #ccc;
width: 100%;
}