-
Notifications
You must be signed in to change notification settings - Fork 0
/
About-styles.css
129 lines (115 loc) · 2.19 KB
/
About-styles.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
129
* {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: white;
background-size: cover;
width: 100%;
height: auto;
}
.logo-div {
position: absolute;
top: 18%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 800px;
width: 100%;
padding: 5px;
display: flex;
justify-content: space-between;
}
.logo-div .logo-img {
width: 25%;
margin-left: auto;
margin-right: auto;
}
.title-div {
position: absolute;
top: 28%;
left: 50%;
color: #FF9914;
font-weight: bold;
font-size: 28px;
transform: translate(-50%, -50%);
padding: 50px;
display: flex;
justify-content: space-between;
}
.detail-div {
position: absolute;
top: 50%;
left: 50%;
color: #5c5853;
font-weight: bold;
font-size: 15px;
border: none;
transform: translate(-50%, -50%);
padding: 15px;
display: flex;
justify-content: space-between;
}
.navbar {
overflow: hidden;
background-color: #FF9914;
position: fixed;
bottom: 0;
width: 100%;
}
.navbar span {
float: left;
display: block;
color: #fff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar .lang {
float: left;
display: block;
background-color: #FF9914;
color: #fff;
text-align: center;
padding: 14px 0px;
text-decoration: none;
font-size: 17px;
border: none;
}
.navbar a {
float: right;
display: block;
color: #fff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
border-bottom: 7px solid white;
}
.navbar a.active {
border-bottom: 7px solid white;
}
@media screen and (max-width: 600px) {
.navbar a:not(:first-child) {
display: none;
}
}
@media screen and (max-width: 600px) {
.navbar.responsive a {
float: none;
display: block;
text-align: left;
}
}
media screen and (max-width: 600px) {
.navbar.responsive a {
float: none;
display: block;
text-align: left;
}
}