-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcloudcoder.css
More file actions
110 lines (92 loc) · 1.57 KB
/
cloudcoder.css
File metadata and controls
110 lines (92 loc) · 1.57 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
/* CloudCoder website css */
html {
font-family: "Georgia", "Times", serif;
font-size: 16px;
}
html, body {
margin: 0;
padding: 0;
border: 0;
}
p {
margin-top: 14px;
}
blockquote {
margin: 30px 120px;
background: #dfd;
border-radius: 24px;
box-shadow: rgba(0,0,0,0.5) 0px 0px 16px;
}
blockquote p {
padding: 8px 16px;
margin-left: 60px;
}
#topnav, #footer {
text-align: center;
padding: 8px 16px;
background: #ddd;
border-bottom: 2px solid silver;
}
#topnav_inner {
margin-left: 80px;
margin-right: 80px;
line-height: 2;
}
#footer {
border-top: 2px solid silver;
}
#topnav a {
background: silver;
border: 4px solid silver;
border-radius: 12px;
padding: 0px 8px;
text-decoration: none;
color: black;
}
#topnav a:hover {
background: black;
color: white;
border: 4px solid black;
}
#pageTitle {
/*border-bottom: 2px solid silver;*/
border-radius: 30px;
background: #ddf;
box-shadow: rgba(0,0,0,0.5) 0px 0px 16px;
margin-top: 24px;
margin-bottom: 24px;
}
#pageTitle-inner {
font-size: 180%;
font-weight: bold;
padding: 4px 30px;
}
#content, #comments-container {
margin-top: 12px;
margin-bottom: 12px;
padding: 0px 80px;
}
#content h1 {
font-size: 160%;
}
#content h2 {
font-size: 130%;
}
#content pre {
display: block;
background: #ddd;
border: 2px solid silver;
margin: 8px 20px;
}
.screenshot {
float: right;
width: 320px;
margin-left: 32px;
margin-top: 12px;
margin-bottom: 12px;
box-shadow: rgba(0,0,0,0.5) 0px 0px 16px;
}
/* Minor tweak to get the CC image link to align nicely with the footer text */
a.cc-img {
vertical-align: -2px;
}