-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobbies.css
More file actions
84 lines (73 loc) · 1.41 KB
/
hobbies.css
File metadata and controls
84 lines (73 loc) · 1.41 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
*{
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: aliceblue;
}
.about-section{
background: url(images/pana.jpg);
padding-top: 200px;
background-size: cover;
background-color: #fdfdfd;
overflow: hidden;
height: 100%;
width: 100%;
padding: 100px 0;
}
.inner-container{
margin-top: 12%;
width: 55%;
float: left;
background-color: aliceblue;
padding: 50px;
border-top-right-radius: 50px;
border-bottom-right-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;
}