-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissue-style.css
132 lines (130 loc) · 2.67 KB
/
issue-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
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(to right, #CEE5D0, #FCF8E8);
}
nav {
background-color: #CE9461;
height: 8vh;
display: flex;
align-items: center;
font-size: 1.6rem;
}
nav h1 {
padding-left: 1.5rem;
color: #FCF8E8;
}
nav a {
text-decoration: none;
}
.title {
padding: 1rem 0 1rem 1.5rem;
font-family: Arial, Helvetica, sans-serif;
color: #73777B;
}
/* ************************ TABLE CSS ********************************* */
.table {
width: 85%;
margin: 0 auto;
font-family: Arial, Helvetica, sans-serif;
padding: 1.5rem 0;
}
table {
width: 100%;
}
thead tr {
background-color: #DEA057;
color: #EEEEEE;
height: 2.5rem;
}
tbody tr {
height: 2.3rem;
}
tbody .tr:nth-child(even) {
background-color: #E0D8B0;
}
tbody td {
padding-left: 20px;
font-weight: bold;
}
tbody td button {
color: antiquewhite;
background-color: #CE9461;
margin-right: 40px;
height: 1.5rem;
width: 90px;
}
caption {
caption-side: bottom;
color: #73777B;
font-weight: bold;
padding-top: 1.8rem;
}
/* ***************************** END OF TABLE CSS
************************************** */
.btns {
margin: 0 auto;
width: 70%;
}
.btn-container {
width: 100%;
display: flex;
justify-content: center;
}
.btns a {
text-decoration: none;
padding: 1.8rem 0 2rem 1rem;
}
.btns button {
width: 120px;
height: 35px;
border-radius: 8px;
font-size: larger;
font-weight: bold;
border-style: none;
background-color: #CE9461;
color: #EEEEEE;
}
.form {
display: flex;
justify-content: center;
overflow: hidden;
}
.form label {
font-size: 1.2rem;
font-weight: 500;
font-family: Verdana, Geneva, Tahoma, sans-serif;
float: left;
padding-bottom: 10px;
margin-right: 40px;
}
.form input,
button {
float: right;
width: 250px;
border-style: none;
font-size: large;
align-items: center;
}
fieldset {
border-style: none;
}
.submit {
height: 35px;
font-weight: bold;
background-color: #CE9461;
color: #EEEEEE;
}
form label[class='error'] {
float: right;
font-size: 0.8rem;
font-weight: bold;
color: #F47C7C;
}
.form h2 {
color: #73777B;
margin-bottom: 20px;
}