-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path20_3.css
More file actions
82 lines (69 loc) · 1.12 KB
/
Copy path20_3.css
File metadata and controls
82 lines (69 loc) · 1.12 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
body,html {
padding: 0; margin: 0;
background-color: #878787;
font-family: arial, helvetica;
}
h1 {
text-align:center;
font-family: arial, helvetica;
font-size: 30px;
}
header {
background-color: #878787;
color: #fff;
padding: 20px 40px;
width: 100%;
box-sizing: border-box;
}
nav {
background-color: #AD3DCB;
padding: 15px 0;
}
nav a {
color: #fff;
font-size: 19px;
text-decoration: none;
}
nav ul {
list-style-type:none;
display: flex;
justify-content: space-around;
}
nav ul li {
display: inline-block;
}
.content {
display: flex;
height: 100%;
/*justify-content: space-around;
*/}
.article {
background-color: #ffffff;
margin: 7px;
padding: 20px;
width: 100%;
line-height: 25px;
}
.related {
float: right;
margin: 7px 7px 7px 0px;
padding: 20px;
background-color: #AD3DCB;
width: 25%;
max-width: 205px;
line-height: 20px;
}
.submit {
width: 70px;
background-color: #333;
color: #ccc;
border: none;
padding: 3px;
}
.query {
border: none;
padding: 3px;
}
#title {
text-shadow: #000 2px 2px 5px;
}