-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (109 loc) · 1.62 KB
/
style.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
*{
margin: 0;
padding: 0;
}
body{
background-color: #fff;
}
#navbar{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: flex-end;
}
#navbar ul{
display: flex;
}
#navbar ul li{
list-style: none;
}
#navbar ul li a{
color: black;
display: block;
padding: 8px 20px;
border-radius: 13px;
font-size: 16px;
text-decoration: none;
}
#navbar ul li a:hover{
color: grey;
}
.container{
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 400px;
}
.name img{
width: 400px;
height: 200px;
margin-top: 40px;
}
.search{
display: flex;
flex-wrap: wrap;
}
.search input[type="text"]{
width: 350px;
height: 34px;
border-radius: 24px;
padding: 0px 10px;
margin-left: 40px;
}
.search button{
width:34px ;
height: 34px;
border-radius:50% ;
}
.btn{
display:block;
}
.btn button{
height: 34px;
margin: 34px 30px;
}
.btn button a{
text-decoration: none;
color: black;
}
.btn button a:hover{
color:grey;
}
/* Footer */
footer{
position: absolute;
bottom: 0;
}
footer h4{
padding-left: 5px;
}
.links{
display: flex;
flex-wrap: wrap;
align-items: center;
}
.link-1 a{
text-decoration: none;
padding: 0px 5px;
color: black;
}
.link-2{
display: flex;
flex-wrap: wrap;
position: absolute;
left:1360px;
}
.link-2 a{
text-decoration: none;
padding: 0px 5px;
color: black;
}
.link-1 a:hover{
color: rgb(66, 64, 64);
}
.link-2 a:hover{
color: rgb(66, 64, 64);
}