-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathstylesheet.css
80 lines (78 loc) · 1.23 KB
/
stylesheet.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
/*
* Style~! Oh-ba-gangnan-style~!
*/
body {
background-color: #283747;
}
header {
padding: 15px 0;
background: #212F3C;
color: #D6DBDF;
}
.inner {
max-width: 400px;
min-width: 320px;
margin: 0 auto;
}
.timer {
display: inline-block;
}
.timer span {
color: #8c3a2b;
background-color: #f8f8f8;
padding: 2px 4px;
border: 0.1px solid #fff;
border-radius: 2px;
}
#main {
height: 100%;
min-height: 400px;
max-width: 600;
margin: 0 auto;
position: relative;
background-color: #283747;
border-top: none;
border-bottom: none;
-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.3);
-moz-box-shadow: 0 0 4px rgba(0,0,0,0.3);
box-shadow: 0 0 4px rgba(0,0,0,0.3);
overflow-x: hidden;
overflow-y: auto;
}
#heart {
display: none;
max-width: 1000px;
margin-top: 30px;
}
#code {
font-family: Monaco, "Source Code Pro", Consolas, sans-serif;
color: #fff;
font-size: 16px;
margin-top: 50px;
}
#code .comments {
color: #EBEDEF;
}
#code .keywords {
color: red;
}
footer {
font-size: 12px;
color: #fff;
width: 100%;
text-align: center;
bottom: 0;
}
footer > a {
color: blueviolet;
text-decoration: none;
}
.iframe {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}