-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
127 lines (126 loc) · 2.03 KB
/
styles.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
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
127
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
:root{
--bg-color: rgb(3, 120, 124);
--text-color: rgb(33, 33, 33);
--full-bg: rgb(245, 245, 245);
--bg-color1: #03787c;
--bg-color2: #01444c;
--bg-color3: #025c5f;
--inner-bg: #f0f0f0;
}
header{
display: flex;
justify-content: space-between;
padding: 20px;
background: var(--bg-color1);
color: var(--inner-bg)
}
nav ul{
display: flex;
justify-content: space-evenly;
gap: 20px;
}
nav ul li{
list-style-type: none;
font-size: 18px;
}
nav ul li a, p a{
text-decoration: none;
color: var(--inner-bg)
}
header > p{
font-size: 30px;
}
p span{
color: var(--bg-color2);
}
marquee{
padding: 10px;
behavior: inherit;
font-size: 20px;
}
main{
width: 100%;
}
.header-text{
height: 100vh;
width: 100%;
background-image: url(images/bga.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.header-text p {
font-size: 30px;
color: #283b3d;
}
.header-text h1 {
font-size: 50px;
color: #023a2e;
}
.header-text h1 span{
color: #57ccbc;
}
/* ................. About Me ....................... */
#about {
width: 100%;
height: 100vh;
padding: 20px;
}
.container{
padding: 20px;
}
.about-first-2{
width: 80%;
margin: 0 auto;
}
.about-first-2 h1{
text-align: center;
font-size: 35px;
margin-bottom: 20px;
color: #283b3d;
}
.about-first-2 p{
font-size: 19px;
margin-bottom: 20px;
}
.tab-titles{
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 20px;
margin: 20px 10px;
font-size: 30px;
color: #023a2e;
}
.tab-links {
font-size: 30px;
}
.tab-contents ul{
list-style-type: none;
font-size: 18px;
margin: 0 auto;
margin-bottom: 25px;
}
.tab-contents ul li {
margin-bottom: 10px;
width: 60%;
margin: 0 auto;
padding-left: 20px;
}
.tab-contents ul li span {
color: #03787c;
}
.tab-contents {
width: 60%;
margin: 0 auto;
}