-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (72 loc) · 1.23 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
body,
html {
background-color: #2f3437;
font-family: 'Lato', sans-serif;
}
h2 {
color: rgb(235, 239, 243);
font-weight: 900;
font-size: 200%;
line-height: 10px;
display: inline-block;
}
p {
color: rgb(222, 227, 237);
/* text-transform: uppercase lowercase */
line-height: 20px;
display: inline-block;
}
/* grid layout */
.item1 {
grid-area: header;
}
.item2 {
grid-area: menu;
}
.item3 {
grid-area: main;
}
.item4 {
grid-area: right;
text-align: center;
}
.item5 {
grid-area: footer;
text-align: center;
font-size: 0.9rem;
}
.grid-container {
display: grid;
grid-template-areas:
'header header header header'
'main main main right'
'footer footer footer footer';
grid-template-rows: 80px auto 50px;
gap: 1px;
padding: 2px;
}
.grid-container>div {
padding: 10px 0;
color: rgb(235, 239, 243);
}
/*----------------------------------------------------*/
a,
a:visited {
color: rgb(222, 227, 237);
text-decoration: none;
}
a:hover {
color: rgb(242, 180, 115);
}
hr {
color: #f05f44;
border: 3px solid #f05f44;
opacity: 1;
max-width: 100px;
margin: 0px;
}
table,
th,
td {
border: 0px;
}