-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
127 lines (111 loc) · 1.93 KB
/
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
li {
display: inline;
}
.icon {
content: url("img/n.png");
display: inline;
height: 92px;
border-radius: 16px;
width: 92px;
}
.siteName {
font-weight: bold;
font-size: 1.4em;
margin-top: 16px;
word-wrap: break-word;
line-height: 1em;
}
.siteLabels {
font-weight: bold;
font-size: 1.2em;
}
.siteValues {
font-weight: normal;
}
.divMainContainer {
padding: 14px;
margin: 2px;
height: 80%;
width: 70%;
background: #000;
border-radius: 24px;
text-align: center;
box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 33%);
}
.divTitle {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 8px;
padding-bottom: 16px;
}
.divLinks {
text-decoration: none;
text-align: center;
font-size: 1.8em;
display: block;
margin: 8px;
border-radius: 16px;
padding: 32px;
flex-grow: 0;
color: white;
align-self: center;
}
.divcaption {
margin-top: 16px;
}
.divthumb {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.thumbnail {
content: "";
height: 135px;
width: 135px;
border-radius: 12px;
}
.radio-container {
display: flex;
overflow-x: scroll;
justify-content: space-between;
align-items: center;
padding: 0 10px;
}
.radio-container input[type="radio"] {
display: inline-block;
margin-right: 10px;
white-space: nowrap;
background-color: #eee;
border: none;
padding: 10px;
font-size: 16px;
}
.radio-container input[type="radio"]:hover {
cursor: pointer;
}
.radio-container input[type="radio"]:checked {
background-color: #007bff;
color: #fff;
}
.topnavleft {
width: 70%;
}
#classic {
display: inline-block;
margin: 0px 0px 0px 8px;
font-weight: 500;
font-family: inherit;
line-height: inherit;
text-align: center;
text-decoration: none;
border: 0px none;
border-radius: 6px;
appearance: none;
color: var(--theme-ui-colors-text, #fff);
background-color: transparent;
box-shadow: inset 0 0 0 1px var(--theme-ui-colors-border, #444d56);
padding: 4px 8px;
font-size: 12px;
}