-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (111 loc) · 1.8 KB
/
style.css
File metadata and controls
116 lines (111 loc) · 1.8 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
.container {
width: auto;
height: auto;
display: flex;
justify-content: space-between; /* Để các thẻ div cách nhau bằng khoảng trắng */
width: 100%;
}
.sidebar {
height: auto;
width: 10%;
background-color: black;
box-sizing: border-box;
}
.txt-home {
color: #fff;
}
.hr {
opacity: 0.7;
}
.sidebar .txt-home {
padding: 20px 0 15px 20px;
}
.sidebar .content {
padding: 20px 0 15px 20px;
}
.sidebar .content h3 {
color: #5c5c5c;
}
.sidebar .content:hover {
background-color: #5c5c5c;
}
.sidebar .content:hover h3 {
color: #fff;
}
/* ================== */
.main {
width: 100%;
box-sizing: border-box;
}
.main .content {
/* background-color: red; */
padding: 20px 120px 30px;
}
.main .logo {
margin-bottom: 30px;
text-align: center;
}
.main .logo img {
max-width: 100%;
max-height: 100%;
display: inline-block;
vertical-align: middle;
}
.intro {
text-align: center;
background-color: #efefef;
padding: 38px 20% 38px;
}
.row1 {
margin-bottom: 20px;
/* padding: 38px 0 20px; */
}
.list {
padding: 30px 0 180px;
display: flex;
justify-content: space-between;
width: 100%;
}
.box {
/* width: 100%; */
box-sizing: border-box;
padding-right: 20px;
}
.box h2 {
margin-bottom: 20px;
margin-right: 30px;
}
.child {
display: flex;
justify-content: space-between;
width: 100%;
}
/* ========= */
.btn-menu{
display: none;
}
@media only screen and (max-width:46.1875em){
/* .sidebar{
display: none;
} */
.container{
flex-direction: column-reverse;
}
}
@media only screen and (min-width:46.25em) and (max-width:63.9375em){
.container{
flex-direction: column-reverse;
}
.sidebar{
display: none;
}
.box .child{
width: 100%;
}
}