-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnormalize.css
84 lines (72 loc) · 1.3 KB
/
normalize.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
81
82
83
body {
background-color:rgb(0, 255, 170);
width: 1100px;
}
header, footer {
border: 1px solid blue;
border-radius: 20px;
width: 950px;
margin: auto;
text-align: center;
padding: 10px 10px 10px 10px;
margin-top: 15px;
margin-bottom: 15px;
background-color: white;
color: #E60D80;
}
header h1 {
color: red;
}
.row {
display: table;
content: "";
clear: both;
}
.body-panel {
padding: 10px;
float: left;
text-align: center;
border: 1px solid red;
margin: auto;
width: 432px;
height: 550px;
background-color: white;
}
.body-panel p {
font-size: 20px;
font-weight: bolder;
color: blueviolet;
}
.navigation-panel {
float: left;
border: 1px solid violet;
width: 216px;
margin-left: 70px;
margin-right: 10px;
text-align: center;
height: 550px;
padding: 10px;
background-color: white;
}
.navigation-panel a {
font-size: 20px;
font-weight: bold;
color:#06c;
line-height: 50px;
}
.active {
color: #7C003B !important;
}
.side-panel {
float: left;
border: 1px solid violet;
width: 216px;
margin-left: 10px;
text-align: center;
height: 300px;
padding: 10px;
background-color: white;
}
.body-panel p.reflection {
font-size: 14px;
}