-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (103 loc) · 1.75 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
/* CSS HEX
--turquoise: #60D8CAff;
--fuchsia: #EC4EF6ff;
--trypan-blue: #2B0EA1ff;
--lavender-blue: #C9CBFFff;
--gray-web: #808080ff;
--background: #0c0530ff;
*/
* {
margin: 0;
padding: 0;
}
body {
background-color: #0c0530;
width: 100%;
font-size: 3.5vw;
color: #EC4EF6ff;
text-align: center;
font-family: 'Varela Round', sans-serif;
}
.javalogo {
height: 12vmin;
}
.header,
.footer {
margin: auto 0px;
width: 95vw;
padding: .25rem;
}
.header h1 img {
height: 7vmin;
}
h3 a,
h3 a:hover {
font-size: 2.8vw;
font-family: 'Press Start 2P', cursive;
}
.twitch-embed {
width: 90vw;
margin: auto;
text-align: left;
}
.twitch-embed .twitch-video {
padding-top: 56.25%;
position: relative;
height: 0;
}
.twitch-embed .twitch-video iframe {
position: absolute;
width: 100%;
height: 100%;
top: 0;
}
.twitch-embed .twitch-chat {
height: 400px;
}
.twitch-embed .twitch-chat iframe {
width: 100%;
height: 100%;
}
@media screen and (min-width: 850px) {
.twitch-embed {
position: relative;
}
.twitch-embed .twitch-video {
width: 75%;
padding-top: 42.1875%;
}
.twitch-embed .twitch-chat {
width: 25%;
height: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
}
}
#timer {
font-size: 2.5vw;
margin: auto;
padding-bottom: 10vh;
padding-top: 3vh;
}
input {
background-color: #191233b4;
}
::-webkit-calendar-picker-indicator {
filter: invert(1);
}
a {
text-decoration: none;
width: 275 px;
text-align: left;
margin: auto;
color: #EC4EF6ff;
}
a i {
color: #60D8CAff
}
a:hover {
text-decoration: underline;
color: #C9CBFFff;
}