-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
86 lines (74 loc) · 1.45 KB
/
Copy pathabout.css
File metadata and controls
86 lines (74 loc) · 1.45 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
*{
margin: 0;
padding: 0;
font-family: Tahoma;
box-sizing: border-box;
}
body{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #f1f1f1;
}
.about-section{
background: url(images/dog.jpg);
background-position: center left;
padding-top: 200px;
background-size: 70%;
background-color: aliceblue;
overflow: hidden;
height: 100%;
width: 100%;
padding: 100px 0;
}
.inner-container{
margin-top: 12%;
width: 55%;
float: right;
background-color: aliceblue;
padding: 50px;
border-top-left-radius: 50px;
border-bottom-left-radius: 50px;
}
.inner-container h1{
margin-bottom: 30px;
font-size: 30px;
font-weight: 900;
}
.text{
font-size: 13px;
color: black;
line-height: 30px;
text-align: justify;
margin-bottom: 40px;
}
h1{
color: rgb(255, 106, 80);
}
.directory{
display: flex;
justify-content: space-between;
font-weight: 700;
font-size: 13px;
}
span{
cursor: pointer;
font-size: 16px;
text-align: center;
padding: 10px;
width: 600px;
}
span:hover{
background-color:rgb(255, 106, 80);
border-radius: 20px;
transition: 0.5s;
}
.current{
background-color: rgb(255, 106, 80);
border-radius: 20px;
}
a{
color: black;
text-decoration: none;
}