-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (115 loc) · 1.64 KB
/
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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
body
{
background: linear-gradient(90deg, #99b5d2, white);
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
line-height: 150%;
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
line-height: 150%;
color: rgb(100, 100, 100);
margin-right: 100px;
margin-left: 100px;
}
header
{
padding: 10px;
width: 95%;
}
header h1
{
font-size: 3.5em;
}
nav
{
display: inline-block;
width: 95%;
text-align: right;
}
nav ul
{
list-style-type: none;
}
nav li
{
display: inline-block;
margin-right: 15px;
}
nav a
{
font-size: 1.3em;
color: #181818;
padding-bottom: 3px;
text-decoration: none;
}
nav a:hover
{
color: #760001;
border-bottom: 3px solid #760001;
}
/* Corps */
section
{
}
.section
{
background: #caced3 repeat;
width: 95%;
height: 405px;
border-radius: 5px;
padding: 10px;
margin: 10px;
box-shadow: 0px 2px 5px #1c1a19;
}
article, aside
{
display: inline-block;
text-align: justify;
}
article
{
background: white repeat;
width: 70%;
margin-right: 15px;
border-radius: 5px;
float: left;
padding: 10px;
box-shadow: 0px 2px 5px #1c1a19;
}
article p
{
font-size: 0.8em;
text-align: justify;
margin: 0px;
padding:0px;
font-family: Arial,Helvetica,sans-serif;
font-size: 15px;
line-height: 150%;
color: rgb(100, 100, 100);
}
article h3
{
color: rgb(36, 91, 132);
font-size: 26px;
line-height: 26px;
}
aside
{
width: 20%;
max-width: 20%;
min-width: 100px;
background-color: #706b64;
box-shadow: 0px 2px 5px #1c1a19;
border-radius: 5px;
padding: 10px;
color: white;
font-size: 0.9em;
float: right;
}
footer
{
background: url('page_footer_bg.png') repeat;
clear: both;
color: white;
margin-top: 20px;
}