-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathonline.css
More file actions
183 lines (157 loc) · 2.76 KB
/
online.css
File metadata and controls
183 lines (157 loc) · 2.76 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
@charset "UTF-8";
body {
margin: 0 auto;
outline: none;
}
/* HEADER */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 40px;
transition: top 0.2s ease-in-out;
}
header .head {
height: 50px;
padding: 10px;
margin: 0 auto;
display: flex;
flex-direction: row;
background-color: transparent;
justify-content: space-between;
}
/* AIRBNB LOGO */
header .logo {
padding-left: 3%;
margin-top: 1%;
max-width: 120px;
max-height: 30px;
flex: 1;
justify-content: center;
overflow: hidden;
}
/* LOGO IMAGE */
header .logo img {
width: 80%;
height: 100%;
}
header .logo .img_changed {
width: 80%;
height: 100%;
min-width: 50px;
}
/* MENU PART */
header .menus {
display: flex;
flex-direction: row;
padding-right: 10%;
margin-top: 1%;
align-items: center;
justify-content: space-around;
padding: 0px 10px;
}
/* MENU IMAGE*/
header .menus .menu_img {
max-width: 40px;
max-height: 30px;
display: flex;
justify-content: space-around;
}
header .menus .menu_globe {
min-width: 15px;
min-height: 15px;
}
header .menus .menu_arrow {
min-width: 15px;
min-height: 15px;
}
header .menus .menu_img img {
width: 100%;
height: 100%;
}
/* BUTTON ATTRIBUTE */
button:focus{
outline: 0;
}
header .menus button {
padding: 7px 7px;
color: white;
border-radius: 13px;
background-color: transparent;
border: transparent;
cursor: pointer;
}
header .menus button:hover {
background-color: #8A4B08;
background-color: !transparent;
transition: .4s ease-in-out;
}
header .menus_changed button {
padding: 7px 7px;
color: black;
border-radius: 13px;
background-color: transparent;
border: transparent;
cursor: pointer;
}
header .menus_changed button:hover {
background-color: #DCDCDC;
background-color: !transparent;
transition: .4s ease-in-out;
}
header .button_changed button:hover {
background-color: #DCDCDC;
background-color: !transparent;
transition: .4s ease-in-out;
}
/* SIGN_IN BUTTON */
header .menus .sign_in {
background-color: #8A4B08;
}
header .menus_changed .sign_in {
box-shadow: 0px 2px 3px 2px #e9e9e9 !important;
background-color: white;
}
/* HEADER INFO */
.head_info {
color: white;
font-size: 50px;
padding-left: 5%;
padding-top: 20%;
height: 300px;
background-size: 100% 100%;
background-image: url("img/online_header.png");
}
.head_info .online_exp{
font-size: 20px;
margin: 10px 0px;
}
/* DATA PART */
.data {
margin: 30px 0px;
padding-left: 5%;
}
.data button {
border-radius: 18px;
background-color: white;
padding: 5px 10px;
}
.data button:hover {
border: solid 1px black;
}
/* PROFILE PART */
.profile {
display: flex;
flex-flow: column;
margin: 3%;
overflow: scroll;
}
.profile img {
width: 100%;
height: 100%;
min-height: 250px;
max-width: 250px;
min-width: 150px;
border-radius: 15px;
}