-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstyle.css
83 lines (76 loc) · 1.33 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
:root {
--primary: blue;
--secondary: rgba(236, 229, 229, 0.39);
--success: green;
--danger: rgb(228, 40, 40);
}
@font-face {
src: url(font.ttf);
font-family: "gayath";
}
body {
padding: 10%;
margin: 50px;
font-family: "gayath";
}
h1 {
text-align: center;
font-size: 2em;
/* font-family: 'gat'; */
letter-spacing: 5px;
}
label {
font-weight: bolder;
font-size: 1.4em;
}
li {
padding: 5px;
list-style-type: circle;
font-size: 1.25em;
}
.button {
padding: 10px;
margin: 10px;
border-radius: 5px;
font-size: 1.1em;
outline-style: none;
border: none;
cursor: pointer;
}
input {
padding: 5px;
border: none;
border-bottom: 1px solid rgb(100, 100, 199);
margin: 5px;
outline-style: none;
background: var(--secondary);
border-radius: 5px;
}
#add,
#save-me {
color: #fff;
background: var(--success);
transition: 1s ease;
}
#add:hover {
color: var(--success);
background: rgb(173, 170, 170);
}
#delete-me {
background: var(--danger);
color: #fff;
transition: 1s ease;
}
#delete-me:hover {
color: var(--danger);
background: rgb(173, 170, 170);
}
#edit-me {
background: var(--primary);
color: #fff;
transition: 1s ease;
}
#edit-me:hover {
color: var(--primary);
background: var(--secondary);
}