-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy paththeme.css
More file actions
118 lines (95 loc) · 1.97 KB
/
theme.css
File metadata and controls
118 lines (95 loc) · 1.97 KB
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
@import url('https://fonts.googleapis.com/css2?family=Inter&family=Nunito&display=swap');
center {
color:white;
font-family: 'Inter', sans-serif;
font-family: 'Nunito', sans-serif;
}
body {
background: #121212;
/*background: linear-gradient(90deg, rgba(42,0,69,1) 0%, rgba(0,118,190,1) 100%);)*/
}
wgTitle {
display: block;
text-align:center;
font-size:40px;
font-family:Arial;
color:white;
}
wgDev {
display: block;
text-align:center;
font-size:20px;
font-family:Arial;
color:white;
}
wgEmbed {
display: block;
text-align:center;
}
a {
color:green;
background:#181818;
border-radius:20%;
text-decoration:none;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
a:hover {
color:lightgreen;
text-decoration:underline;
}
iframe {
height: 720px;
width: 100%;
resize: both;
overflow: auto;
border-style: solid;
border-color:black;
border: 10px solid transparent
}
comments {
display: block;
text-align:center;
background:#181818;
}
.wgHelp {
background-image:url('wait.jpg');
text-align: center;
background-size:100% 110%;
padding:5px;
width:400px;
height:10px;
border:1px solid black;
margin:auto;
}
* {
box-sizing: border-box;
}
#container-parent {
display: flex;
flex-wrap: wrap;
}
#container-parent>div {
min-height: 100px;
flex: 1 0 33%;
text-align: center;
border: 1px solid white;
background-color:#181818;
border-radius: 5%;
}
.center {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.left {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: left;
}
un {
text-decoration:underline;
}