-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
158 lines (133 loc) · 2.68 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
body {
font-weight: bolder;
width: 100%;
overflow: hidden;
color: black;
background: url('./icons/background.png') no-repeat;
background-size: cover;
}
header {
text-align: center;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
margin-left: auto;
margin-right: auto;
background-image: linear-gradient(223.69deg, rgba(246, 25, 224, 0.2) 42.35%, rgba(247, 25, 224, 0.2) 48.48%, rgba(50, 20, 232, 0.2) 60.46%, rgba(50, 20, 232, 0.2) 71.41%); /* the gradient */
background-origin: border-box; /* set background to start from border-box */
border-spacing: 5px; /* space between each cell */
border: 5px solid transparent; /* optional */
}
td,
th {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: rgb(227, 233, 233);
}
#th1 {
width: auto;
}
#th3 {
text-align: right;
}
.addNew {
display: none;
width: 100%;
text-align: center;
margin-top: 1rem;
}
#addNew h1,
form {
text-align: center;
}
form input {
width: 40%;
font-weight: bolder;
}
#submit {
width: auto;
margin-left: 35%;
}
.active {
color: blue;
}
.inActive {
color: black;
}
.contact {
display: none;
width: 94%;
margin-left: 2rem;
margin-right: 4rem;
margin-top: 1rem;
text-align: center;
}
footer p {
width: 92%;
border: 5px solid black;
padding: 0.5rem;
position: fixed;
bottom: 0;
margin-left: 2%;
font-weight: bold;
}
.list {
display: block;
width: 100%;
margin-left: 2rem;
margin-right: 2rem;
margin-top: 1rem;
text-align: center;
}
.list h2 {
font-size: 3rem;
margin-bottom: 3rem;
text-align: center;
}
.date {
text-align: right;
margin-right: 2.5%;
font-weight: bold;
color: rgb(45, 141, 238);
}
.nav-menu {
list-style-type: none;
margin: 0 27px;
padding: 5px 24px 24px 24px;
}
.navbarBrand img {
width: 95px;
}
.nav-menu li {
float: right;
}
.one,
.two {
border-right: 3px solid;
border-image: linear-gradient(223.69deg, rgba(246, 25, 224, 0.2) 42.35%, rgba(247, 25, 224, 0.2) 48.48%, rgba(50, 20, 232, 0.2) 60.46%, rgba(50, 20, 232, 0.2) 71.41%) 1;
}
.nav-menu .logo {
float: left;
}
.navItems a {
display: block;
text-decoration: none;
margin: 0 12px;
}
.delete,
#submit {
border: none;
font-size: large;
font-weight: bold;
margin-right: 5%;
background: linear-gradient(223.69deg, rgba(246, 25, 224, 0.2) 42.35%, rgba(247, 25, 224, 0.2) 48.48%, rgba(50, 20, 232, 0.2) 60.46%, rgba(50, 20, 232, 0.2) 71.41%);
}
#title,
#author {
background-color: rgb(227, 233, 233);
border: solid 5px;
border-image: linear-gradient(223.69deg, rgba(246, 25, 224, 0.2) 42.35%, rgba(247, 25, 224, 0.2) 48.48%, rgba(50, 20, 232, 0.2) 60.46%, rgba(50, 20, 232, 0.2) 71.41%) 1;
}