-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (92 loc) · 1.62 KB
/
style.css
File metadata and controls
92 lines (92 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
*{
margin: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
}
Header{
height: 150px;
background-color: #61B4EE;
display: flex;
align-items: center;
}
#logo-comic{
display: flex;
align-items: center;
margin-left: 59px;
cursor: pointer;
}
#nav-bar{
list-style: none;
display: flex;
justify-content: space-around;
align-items: center;
width: 50vw;
margin-left: 35vw;
}
#nav-bar a{
display: block;
font-size: 36px;
font-weight: 600;
text-decoration: none;
color: #000000;
cursor: pointer;
}
#burger-menu{
width: 40px;
max-height: 35px;
cursor: pointer;
}
main{
display: flex;
}
#main-image{
margin: 50px 119px;
}
#main-image img{
height: 720px;
}
#main-para{
height: 720px;
display: flex;
flex-direction: column;
justify-content: space-around;
margin: 50px 0px;
}
#main-para p {
font-size: 24px;
width: 1000px;
}
#char-name{
width: 249px;
text-transform: uppercase;
font-family: "Irish Grover", system-ui;;
font-size: 64px;
}
footer{
height: 100px;
background-color: #F3FE3E;
display: flex;
align-items: center;
}
footer p{
font-size: 20px;
font-weight: 500;
margin-left: auto;
}
#social-btn{
margin: auto;
}
.fa-brands.fa-youtube{
font-size: 35px;
cursor: pointer;
}
.fa-brands.fa-instagram{
font-size: 35px;
margin: 0 30px;
cursor: pointer;
}
.fa-brands.fa-x-twitter{
font-size: 35px;
cursor: pointer;
}