Skip to content

Commit 0e1f4ae

Browse files
Add files via upload
1 parent a79f021 commit 0e1f4ae

File tree

5 files changed

+198
-0
lines changed

5 files changed

+198
-0
lines changed

templates/styles/base.css

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
body {
2+
background: #000;
3+
color: #FAE79D;
4+
}
5+
6+
/* Navigation */
7+
8+
.nav {
9+
position: relative;
10+
padding-top: 10px;
11+
padding-bottom: 10px;
12+
13+
border-top: 1px solid #FAE79D;
14+
border-bottom: 1px solid #FAE79D;
15+
}
16+
17+
.nav__item {
18+
font-size: 20px;
19+
padding-right: 10px;
20+
padding-left: 5px;
21+
border-right: 1px solid #FAE79D;
22+
}
23+
24+
.left, .right {
25+
display: inline-block;
26+
}
27+
28+
.left :first-child {
29+
padding-left: 0;
30+
}
31+
32+
.left :last-child, .right :last-child {
33+
border-right: 0;
34+
}
35+
36+
.right {
37+
top: 15%;
38+
position: absolute;
39+
right: 0;
40+
}
41+
42+
.round__avatar {
43+
border-radius: 100px;
44+
}
45+
46+
/* Messages */
47+
48+
.warning {
49+
color: #FF7A7A;
50+
}
51+
52+
.message {
53+
color: #C8F57F;
54+
}
55+
56+
/* Footer */
57+
58+
.footer {
59+
position: fixed;
60+
left: 0; bottom: 0;
61+
width: 100%;
62+
63+
padding-bottom: 5px;
64+
padding: 5px;
65+
border-top: 1px solid #FAE79D;
66+
}

templates/styles/forum.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.title {
2+
font-size: 32px;
3+
}
4+
5+
.question__data {
6+
margin-bottom: 10px;
7+
}
8+
9+
.first-child {
10+
padding-right: 10px;
11+
border-right: 1px solid #FAE79D;
12+
}
13+
14+
.last-child {
15+
display: inline-block;
16+
padding-left: 10px;
17+
}
18+
19+
.preview {
20+
padding-top: 15px;
21+
padding-bottom: 15px;
22+
}

templates/styles/index.css

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.text {
2+
font-size: 24px;
3+
}
4+
5+
hr {
6+
border: none;
7+
color: #FAE79D;
8+
background-color: #FAE79D;
9+
height: 2px;
10+
}
11+
12+
.question {
13+
border: 1px solid #FAE79D;
14+
display: inline-block;
15+
padding: 1px;
16+
padding-right: 4px;
17+
margin-right: 10px;
18+
}
19+
20+
.question :hover {
21+
cursor: pointer;
22+
}
23+
24+
TD.leftcol {
25+
padding-top: 4px;
26+
vertical-align: top;
27+
}
28+
29+
TD.rightcol {
30+
display: inline-block;
31+
padding-left: 6px;
32+
}
33+
34+
.question__data {
35+
display: block;
36+
}
37+
38+
.pagination {
39+
margin-top: 15px;
40+
}
41+
42+
.pagination__item {
43+
font-size: 18px;
44+
}

templates/styles/ownerprofile.css

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
.user__data {
2+
padding-left: 6px;
3+
}
4+
5+
/* User data */
6+
7+
table {
8+
border-spacing: 0;
9+
}
10+
11+
TD.leftcol {
12+
vertical-align: top;
13+
}
14+
15+
TD.rightcol {
16+
padding-left: 6px;
17+
}
18+
19+
.data {
20+
padding-left: 5px;
21+
padding-right: 10px;
22+
border-right: 1px solid #FAE79D;
23+
}
24+
25+
.change__data {
26+
padding-left: 5px;
27+
font-size: 15px;
28+
}
29+
30+
/* The Form */
31+
32+
#avatar:hover {
33+
cursor: pointer;
34+
}
35+
36+
#reCAPTCHA_token {
37+
display: none;
38+
padding-top: 5px;
39+
padding-bottom: 7px;
40+
}
41+
42+
.button__entry {
43+
padding-top: 5px;
44+
}

templates/styles/userprofile.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.user__data {
2+
padding-left: 6px;
3+
}
4+
5+
/* User data */
6+
7+
table {
8+
border-spacing: 0;
9+
}
10+
11+
TD.leftcol {
12+
vertical-align: top;
13+
}
14+
15+
TD.rightcol {
16+
padding-left: 6px;
17+
}
18+
19+
.data {
20+
padding-left: 5px;
21+
padding-right: 10px;
22+
}

0 commit comments

Comments
 (0)