-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (82 loc) · 1.32 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
html, body {
margin: 0;
padding: 0;
min-height: 100vh;
overflow-x: hidden;
}
body {
background-color: rgba(36, 27, 35) !important;
}
#coc_logo {
width: 32vw;
min-width: 300px;
max-width: 420px;
}
#title {
font-family: 'Montserrat', sans-serif;
background-color: inherit;
color: rgba(36, 27, 35);
border-style: solid;
text-shadow:
-2px -2px 0 rgb(194, 187, 134),
2px -2px 0 rgb(194, 187, 134),
-2px 2px 0 rgb(194, 187, 134),
2px 2px 0 rgb(194, 187, 134);
font-size: 72px;
}
@media only screen and (max-width: 700px) {
#title {
font-size: 45px;
}
}
.quote-div {
width: 90vw;
max-width: 800px;
min-width: 300px;
}
#planets {
height: 400px;
}
footer {
background-color: rgb(39, 34, 43);
overflow: auto;
}
.contact-div {
width: 90vw;
max-width: 800px;
}
.contact {
font-family: monospace !important;
}
.contact span {
color: rgb(194, 187, 134);
}
#faq-div {
border-top: 10px dotted rgb(47, 65, 74);
max-width: 800px;
overflow: auto;
}
.color-yellow {
color: rgb(194, 187, 134);
}
p.ans {
color: rgb(179, 175, 178) ;
max-width: 600px;
float: right;
}
p.ans ul li{
color: rgb(179, 175, 178) !important;
}
p.ans.left {
float: left;
}
p.ans.right {
float: right;
}
p.ans em {
color: white;
font-size: 1.2em;
}
.clearfix {
overflow: auto;
}