-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgateway.css
134 lines (107 loc) · 1.93 KB
/
gateway.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
html {
color: #f0f8ff;
background-color:#161D27;
font-family: 'Roboto', sans-serif;
}
body{
margin: 0;
}
.navbar {
height: 50px;
width:100%;
background-color:#1c2837;
}
.navbar li {
background-color: #1c2837;
display: inline-block;
height: 100%;
width:15%;
text-align: center;
cursor: pointer;
font-weight: bold;
user-select: none;
vertical-align: top
}
.navbar li:hover{
background-color: #344a66;
}
.navbar li img {
max-width: 80%;
max-height: 80%;
}
.info {
display: flex;
justify-content: center;
align-items:baseline;
background-color: #161D27;
width:100%;
height: calc((var(--vh, 1vh) * 100) - 50px);
margin: 0;
}
.child {
width: 80%;
background-color: #1c2837;
margin: 0 auto;
border: #2f3237;
border-style: solid;
border-radius: 15px;
padding: 15px;
text-indent: 0%;
margin-top: 5%;
}
.child li {
list-style-type: none;
}
.child li div {
width: 100%;
display: flex;
font-size: 23px;
user-select: none;
justify-content: space-between;
align-items: center;
margin-left: 3px;
padding-top: 2px;
padding-bottom: 2px;
}
.child div.home{
display: grid;
grid-template-columns: 1fr auto;
}
.child div.home div{
}
.child li div:not(.reload):not(.overide){
cursor: pointer;
}
.child li div:not(.reload):not(.overide):hover {
background-color: #344a66;
}
.child li div img {
flex:1;
max-height: 100%;
max-width: 10px;
}
.child li div div.date{
flex: 1;
}
.child li div div{
width: 90%;
}
.child li div p{
flex-shrink: 0;
}
.child li div.overide{
justify-content: center;
}
.child li div.reload{
justify-content: flex-end;
}
.child div.reload img{
padding: 4px;
max-width: 25px;
width: 40px;
cursor: pointer;
border-radius:40%;
}
.child div.reload img:hover {
background-color: #344a66;
}