forked from NateWr/html-css-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (94 loc) · 1.62 KB
/
style.css
File metadata and controls
117 lines (94 loc) · 1.62 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
83
84
85
86
87
88
89
90
91
92
93
94
95
@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans:800');
body {
font-family: "Gill Sans Extrabold", Helvetica, sans-serif;
overflow-x: hidden;
}
.nav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color:rgb(153, 51, 51);
opacity: .9;
overflow-x: hidden;
padding-top: 60px;
transition: 0.7s;
}
.nav a {
display: block;
padding: 20px 30px;
font-size: 25px;
text-decoration: none;
color: #ccc;
}
.nav a:hover {
color: #fff;
transition: 0.4s;
}
.nav .close {
position: absolute;
top: 0;
right: 22px;
margin-left: 50px;
font-size: 30px
}
.slide a {
color: rgb(153, 51, 51);
font-size: 36px;
}
#content {
transition: margin-left 0.7s;
overflow: hidden;
width: 100%;
}
.article {
width: 100%;
float: left;
display: table;
column-count: 3;
margin: 0 20px 0 20px
background-color: white;
color: rgb(153, 51, 51);
text-align: center;
display: table-cell;
vertical-align: middle;
}
p.headline01:first-of-type {
margin-top: 0px;
}
.egypt-headline {
font-size: 24pt;
font-weight: bold;
line-height: 14pt;
}
.special-headline {
font-family: "Times New Roman", Times, serif;
font-size: 16pt;
font-weight: bold;
color: rgb(242, 216, 65);
}
.headline01 {
font-size: 24pt;
font-weight: bold;
color: rgb(153, 51, 51);
line-height: 14pt;
}
.highlights {
font-family: "Times New Roman", Times, serif;
font-size: 13pt;
color: rgb(242, 216, 65);
}
footer {
background-color: rgb(180, 180, 180);
width: 100%;
height: 60px;
text-align: center;
position: absolute;
bottom: 0;
}
.content-footer {
font-size: 10pt;
line-height: 11pt;
}