-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
166 lines (156 loc) · 2.9 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
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
*{
margin: 0px;
padding: 0px;
}
/* navigation bar */
.navigation{
font-family: var(--font-1);
/* height: 115px; */
/* background-color: rgb(131, 150, 150); */
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.nav-left{
height: 140px;
font-size: 50px;
display: flex;
}
.nav-left img{
width: 140px;
}
.nav-left ul {
display: flex;
margin: 0px 40px;
align-items: center;
font-size: 30px;
}
.nav-left ul li{
list-style: none;
margin: 0px 25px;
font-family: var(--font-2);
}
.nav-left ul li a{
text-decoration: none;
color: black;
}
.nav-left ul li a:hover{
/* padding: 4px 6px; */
/* border: 2px solid rgb(253, 253, 214); */
border-radius: 20px;
font-weight: bolder;
/* background-color: rgb(253, 253, 214); */
color: silver;
}
.nav-right{
align-items: center;
}
/* contant bar */
.content{
height: 100%;
/* background-color: rgb(222, 222, 222); */
display: flex;
margin-top: 20px;
margin-bottom: 20px;
padding: 20px;
position: relative;
}
.content::after{
content: "";
background-image: url("../image/background3.jpg");
position: absolute;
width: 100%;
z-index: -1;
height: inherit;
opacity: 0.6;
}
.content-left {
font-family: var(--font-1);
width: 50%;
display: flex;
padding: 50px;
flex-direction: column;
justify-content: center;
z-index: 1;
}
.content-right{
width: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.content-right img{
height: 275px;
border: 2px solid black;
border-radius: 200px;
}
/* articals bar */
.home-articales{
margin-top: 20px;
padding: 0px;
height:100%;
/* background-color: rgb(117, 34, 195); */
position: relative;
}
.year-box{
position: absolute;
right: 100px;
top: 120px;
width: 150px;
height: 150px;
font-size: 18px;
/* background-color: aqua; */
}
.year-box div{
margin: 4px 12px;
}
.home-articale-y{
display: flex;
}
.home-articale{
margin: 40px;
padding: 10px;
display: flex;
/* border: 2px solid black; */
/* flex-direction: column; */
text-align: center;
justify-content: center;
}
.home-articale-image{
margin: 10px;
}
.home-articale-content div{
padding: 20px 2px;
text-align: center;
justify-content: center;
}
.home-articale-content a{
text-decoration: none;
color: black;
}
.home-articale-view li {
display: flex;
list-style: none;
}
.home-articale-view li a{
text-decoration: none;
}
.home-articale img{
padding: 0px 0px;
height: 140px;
}
/* footer bar */
.footer-head {
height: 100%;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
color: white;
flex-direction: column;
align-self: center;
}
.footer a{
color: white;
}