-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (123 loc) · 2.01 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
height: 100%;
width: 100%;
font-family: "Mona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
header{
display: flex;
height: 70px;
justify-content: center;
align-items: center;
justify-content: space-between;
margin: 20px;
font-weight: 600;
font-size: 15px;
}
.left_head{
display: flex;
gap: 2rem;
margin-left:10px ;
}
.left_head ul{
display: flex;
list-style: none;
gap: 3rem;
justify-content: center;
align-items: center;
}
.left_head ul li a{
text-decoration: none;
color: black;
}
.left_head ul li a:hover{
color: rgb(153, 87, 98);
}
.dribble_logo{
height: 55px;
width: 90px;
}
.right_head{
margin-right: 10px;
}
.right_head a{
text-decoration: none;
margin-right: 20px;
color: black;
}
#sign_up{
border: 1px solid black;
border-radius: 20px;
background-color: black;
padding: 10px 20px;
color: white;
}
h1{
text-align: center;
margin-top: 30px;
}
.container{
display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(4,1fr);
margin-top:50px;
padding: 30px 60px;
gap: 2rem;
}
.travel1{
height: 250px;
width: 350px;
border: 1px solid white;
border-radius: 10px;
}
.display_name{
margin-right: 120px;
}
.icons{
font-size: 13px;
color: rgb(94, 92, 92);
}
a{
text-decoration: none;
color: black;
}
.travel1:hover{
transform: scale(1.1);
}
.photo{
margin-top: 8px;
}
footer{
padding: 30px;
}
.foot1{
display: flex;
justify-content: center;
align-items: center;
justify-content: space-between;
height: 185px;
}
.left_foot{
display: flex;
justify-content: space-between;
}
.left_foot ul {
display:flex;
gap: 3rem;
justify-content: center;
align-items: center;
margin-left: 25px;
}
.left_foot ul li{
list-style: none;
}
.right_foot a{
margin-left: 20px;
}
.foot2{
color: rgb(111, 108, 108);
}