-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (67 loc) · 1.16 KB
/
style.css
File metadata and controls
83 lines (67 loc) · 1.16 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
html {
--main-color: #34262f;
--secondary-color: #7d4d09;
}
*{
box-sizing:border-box;
}
body {
font-family: 'Roboto', sans-serif;
margin: 0;
}
h1 {
font-family: 'Lobster', cursive;
}
.container {
padding: 20px;
margin-left: auto;
margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
.container {
width: 750px;
}
}
/* Medium */
@media (min-width: 992px) {
.container {
width: 970px;
}
}
/* Large */
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
/* start */
#header {
background-color: var(--main-color);
}
#header .container {
display: flex;
justify-content: space-between;
align-items: center;
}
#header .container img {
width: 60px;
height: 60px;
border-radius: 50%;
}
#header .iconDiv {
width: 60px;
direction: rtl;
}
#header .menuLine{
height: 1.7px;
background-color: white;
margin-bottom: 5px;
}
#header #centerLine {
width: 50%;
transition: 0.3s;
}
#header .menuDiv:hover #centerLine {
width: 100%;
}