-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
109 lines (91 loc) · 1.45 KB
/
index.css
File metadata and controls
109 lines (91 loc) · 1.45 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
h2 {
font-family: "Courier New", Courier, monospace;
}
h4 {
font-family: "Courier New", Courier, monospace;
}
body {
font-family: "Courier New", Courier, monospace;
}
/* Colors */
.rc-dark-grey {
color: #fff;
background-color: #4b4b4b;
}
.rc-base-grey {
color: #fff;
background-color: #808080;
}
.rc-light-grey {
color: #fff;
background-color: #bfbfbf;
}
.rc-black {
color: white;
background-color: black;
}
/* Alignments */
.rc-top-left {
text-align: left;
vertical-align: top;
}
.rc-top-right {
text-align: right;
vertical-align: top;
}
.rc-center {
text-align: center;
vertical-align: center;
}
/* Dialog */
.dialog-background {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
}
.dialog-foreground {
background-color: #bfbfbf;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
max-width: 800px;
}
/* Content */
.rc-section {
max-width: 800px;
margin: auto;
padding: 64px 16px;
}
.rc-sub-section {
padding-top: 16px;
padding-bottom: 16px;
}
.rc-footer {
max-width: 800px;
margin: auto;
padding: 16px;
}
.rc-image {
max-width: 200px;
}
.rc-icon {
padding-right: 8px;
}
.rc-item {
display: inline-block;
padding-left: 8px;
padding-right: 8px;
margin-bottom: 16px;
}
.rc-paragraph {
text-align: justify;
text-indent: 50px;
}