-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (65 loc) · 1.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
*{
margin: 0;
padding: 0;
box-sizing: border-box;
justify-content: flex-start;
}
body{
display: flex;
flex-direction: column;
min-width: 500px;
}
#input-el{
width: 95%;
height: 35px;
padding: 5px;
margin: 10px auto 5px auto;
border: 2px solid rgb(231, 167, 167);
border-radius: 10px;
}
#input-btn{
width: 120px;
padding: 9px ;
margin: 5px 2.5%;
font-weight: bold;
font-size: 1rem;
background-color:rgb(99, 214, 5);
border-radius: 10px;
color: whitesmoke;
border: none;
cursor: pointer;
}
#savetab-btn{
width: 120px;
padding: 9px ;
margin: 5px 2.5%;
font-weight: bold;
font-size: 1rem;
background-color:rgba(196, 4, 43, 0.781);
border-radius: 10px;
color: whitesmoke;
border: none;
cursor: pointer;
}
#delete-btn{
width: 120px;
padding: 9px ;
margin: 5px 2.5%;
font-weight: bold;
font-size: 1rem;
background-color:rgba(250, 78, 16, 0.829);
border-radius: 10px;
color: whitesmoke;
border: none;
cursor: pointer;
}
.list{
margin: 10px 2.5%;
}
#ul-el{
list-style: none;
}
#ul-el a{
color: coral;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}