-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
70 lines (57 loc) · 1.03 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
/*html,body{width:100%} /* for ie11 fullscreen API*/
*, *::before, *::after{box-sizing:border-box;}
a {
color: inherit;
text-decoration: none;
}
body {
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
background-color: #4A4A4A;
}
body::-webkit-scrollbar {
width: auto;
}
body::-webkit-scrollbar-track {
background: #202020;
}
body::-webkit-scrollbar-thumb {
background-color: #727272 ;
}
table {
text-align: center;
width: 320px;
border-collapse: collapse;
margin-bottom: 20px;
color: #fff;
border: 0px solid transparent;
}
th {
background-color: hsl(341, 54%, 47%);
height: 25px;
}
td {
background-color: #595759;
height: 22px;
}
td[id] {
font-weight: bolder;
color: #28c4b0;
}
h1 {
color: #71DED0;
font-size: 45px;
}
.anchor-repository {
color: white;
font-weight: bolder;
}
label {
display: block;
height: 100%;
cursor: pointer;
}