-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
113 lines (95 loc) · 1.81 KB
/
styles.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
body {
margin: 0;
padding: 0;
opacity: 0.;
background-image: radial-gradient(#b3b3b3 0.5px, #fcf1db 0.5px);
background-size: 10px 10px;
}
header {
position: sticky; top: 0px;
justify-content: center;
background-color: #051e3c;
padding: 10px;
margin-bottom: 20px;
}
#menu {
width: 100%;
display: flex;
justify-content: center;
}
select {
padding: 7px;
margin: 10;
background-color:#f8d548;
border: 0px;
border-radius: 4px;
color: #000000;
font-family: Montserrat;
font-weight: 670;
text-align: center;
font-size: 13;
}
h1 {
font-family: Montserrat;
text-align: center;
color: #F2F2F0;
}
h3 {
font-family: Montserrat, sans-serif;
font-weight: 700;
text-align: center;
}
h5 {
font-family: Montserrat;
color: #b3b3b3;
font-weight: 200;
text-align: center;
}
.content {
margin: auto;
width: 50%;
background-color: #F2F2F0;
padding: px;
border-radius: 10px;
min-width: min-content;
margin-bottom: 30px;
}
.tablelabel {
background-color: #f8d548;
padding: 2px;
border-top: 1px solid #969696;
border-left: 1px solid #969696;
border-right: 1px solid #969696;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
}
table {
font-family: Inconsolata;
font-size: 14px;
border-collapse: collapse;
width: 100%;
border: 1px solid #969696;
}
td, th {
padding: 20px;
text-align: left;
margin: 0;
border-bottom: 1px solid #969696;
}
tbody tr:nth-child(2n){
background-color: #e7e7e7;
}
th {
background-color: #bebebe;
color: white;
}
.code {
font-family: monospace;
color: #e7e7e7;
background-color: #7e7d7d;
padding: 4px;
border-radius: 5px;
}
thead {
background-color: #d3d3d3;
}