-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (61 loc) · 1.02 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 {
min-width: 400px;
margin: 0;
padding: 1rem;
font-family: "Kanit", sans-serif;
}
input {
width: 100%;
height: 2rem;
padding: 0 10px;
box-sizing: border-box;
border-radius: 5px;
border: 2px solid;
/* margin-bottom: 0.5rem; */
}
button {
background-color: #fbda61;
font-size: 0.7rem;
border-radius: 10px;
border: none;
cursor: pointer;
padding: 0.8rem 1.4rem;
font-weight: 600;
}
button:hover {
background-color: #d7ba51;
}
#input-btn,
#save-tab-btn,
#delete-btn {
box-shadow: 5px 5px 3px #2bd2ff;
margin: 1rem 0.5rem 0.5rem 0;
}
.delete-button {
padding: 6px 12px;
border-radius: 6px;
box-shadow: 2.5px 2.5px 1.5px #2bd2ff;
margin: 0.3rem 0.5rem 0.3rem 0;
text-align: center;
}
ul {
list-style: none;
padding-left: 0;
/* margin-top: 1rem; */
}
li {
white-space: nowrap;
overflow: clip;
text-overflow: ellipsis;
}
li a {
color: #1e1e1e;
font-size: 0.9rem;
text-decoration: none;
cursor: pointer;
}
img {
max-width: 33%;
float: right;
margin-bottom: 1rem;
}