-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (106 loc) · 2.1 KB
/
style.css
File metadata and controls
126 lines (106 loc) · 2.1 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
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
124
125
126
body{
margin: 0 0 0 0;
}
.container{
display: grid;
grid-template-areas: "header header header" "navi navi navi" "left content right" "footer footer footer";
grid-template-columns: 0.5fr 6.5fr 3fr;
grid-template-rows: 135px 50px 80% 50px;
grid-auto-rows: 480px;
grid-auto-flow: column dense;
grid-gap: 12px;
font-family: sans-serif;
align-items: center;
justify-items: center;
justify-content: space-evenly;
background-image: linear-gradient(-45deg, #f0f0e1,#ffffff);
min-width: 720px;
}
p{
color: #696969;
line-height: 30px;
letter-spacing: 1pt;
}
header{
grid-area: header;
text-align: center;
width: 80%;
height: 100%;
align-self: center;
border-bottom: 0.8px solid #4d4b4b;
font-family: Calibri, sans-serif;
letter-spacing: 1.8pt;
font-size: 20px;
}
.navi{
grid-area: navi;
text-align: center;
}
.navi a{
padding: 10px 40px;
text-decoration: none;
transition: all 0.5s;
color:black;
letter-spacing: 0.8pt;
}
.navi a:hover{
background-color: rgb(141, 121, 95);
}
main{
grid-area: content;
align-self: flex-start;
}
main p{
padding-top: 20px;
padding-bottom: 20px;
}
.b a{
text-decoration: none;
transition: 0.5s;
}
.b a:hover{
background-color: rgb(141, 121, 95);
}
footer{
grid-area: footer;
text-align: center;
width:80%;
border-top: 0.8px solid #4d4b4b;
}
footer p{
font-size: 10pt;
}
.twitter{
grid-area: right;
text-align: center;
text-decoration: underline;
align-self: flex-start;
color: #442b13;
letter-spacing: 0.8pt;
}
.twframe{
justify-self: stretch;
align-self: stretch;
max-height: 700px;
overflow: scroll;
}
h3{
padding: 20px;
border: 1px solid #4d4b4b;
border-left: 0px;
border-right: 0px;
color: #6b4521;
letter-spacing: 0.8pt;
}
.c li{
list-style: none;
display: inline-block;
justify-self: center;
padding: 10px 150px;
}
.map{
border: 1px solid gray;
border-radius: 5px;
padding: 25px 25px;
background-color: #ffffff;
}