-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
118 lines (94 loc) · 1.97 KB
/
Copy pathglobal.css
File metadata and controls
118 lines (94 loc) · 1.97 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
body {
color: black;
background-color: white;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
header {
background-color: black;
display: flex;
justify-content: space-between;
color: white;
}
header figure {
width: 36%;
background-color: black;
}
.headerRight {
width: 64%;
background-color: black;
display: flex;
flex-direction: column;
/* align-items: center; */
/* justify-content: center; */
}
nav ul {
display: flex;
gap: 10px;
text-decoration: none;
}
nav ul li a {
text-decoration: none;
color: #bebebe;
}
nav ul li {
list-style: none;
}
body {
font-family: 'poppins', sans-serif;
}
/* section {
justify-content: center;
display: flex;
flex-wrap: wrap;
} */
header img {
width: 100px;
height: 100px;
}
footer {
justify-content: space-between;
display: flex;
border: 1px solid bebebe;
flex-direction: column;
text-align: center;
background-color: #bebebe;
width: 100%;
bottom: 0;
left: 0;
padding: 10px 0;
}
.footer ul li a {
text-decoration: none;
}
.joker {
text-decoration: none;
display: flex;
flex-direction: column;
}
.footerA ul li{
text-decoration: none;
list-style: none;
}
.comment-section {
width: 100%;
margin: 0 auto;
background-color: #dddd;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
}
.comment {
border-bottom: 1px solid #ddd;
padding: 10px 0;
display: flex;
justify-content: center;
flex-direction: column;
}
.comment p {
margin: 5px 0;
}
.comment strong {
font-weight: bold;
border: 1px black solid;
}