forked from urfu-2015/verstka-tasks-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (68 loc) · 864 Bytes
/
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
html
{
margin: 0;
}
body
{
margin: 0;
background-color: #69c;
}
.content
{
margin: 0 auto;
padding: 10px 25px;
width: 950px;
background-color: #f0f8ff;
}
.center
{
text-align: center;
}
.noMarkList
{
list-style-type: none;
}
table,
tr,
td,
th
{
padding: 5px;
border: 1px solid black;
border-collapse: collapse;
}
.codeContent
{
background-color: #d3d3d3;
padding: 0 10px;
margin-right: 100px;
}
.author
{
margin-left: 500px;
}
article.comment
{
border: 1px solid black;
border-radius: 15px;
padding: 10px;
margin: 10px;
}
article.comment:nth-child(2n)
{
background-color: #b0c4dE;
}
article.comment:nth-child(2n+1)
{
background-color: #87ceeb;
}
.commenter
{
text-align: right;
font-style: italic;
}
footer
{
text-align: right;
margin-top: 60px;
}