-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
113 lines (96 loc) · 1.72 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Righteous&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, button, input {
font-family: 'Righteous', cursive;
background-color: #222;
color: #fff;
}
.container {
width: fit-content;
margin: 0 auto;
padding: 20px;
background-color: #333;
border-radius: 10px;
}
.crud_title {
text-align: center;
}
.crud_form {
display: flex;
margin: 10px 0;
}
.form_input {
flex: 1;
margin-right: 5px;
margin-right: 10px;
font-size: 1rem;
border: 1px solid #444;
background-color: #333;
color: #eee;
}
.button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
font-weight: 700;
}
.button:hover {
transform: scale(1.2);
}
.button-primary {
cursor: pointer;
background-color: #007bff;
color: #fff;
}
.button--Secondary {
cursor: pointer;
background-color: #007bff;
color: #fff;
}
.button--Terciary {
cursor: pointer;
background-color: #007bff;
color: #fff;
}
.crud_table {
width: 100%;
border-collapse: collapse;
}
.table_header, .table_body td{
border: 1px solid #444;
padding: 8px;
}
.table_header{
background-color: #333;
}
.table_body td:nth-child(3) {
display: flex;
justify-content: space-around;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 20px 0;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
margin: 20px 0;
}
footer a {
color: #1e90ff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
footer p {
margin: 5px 0;
}