-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
87 lines (76 loc) · 1.23 KB
/
index.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
overflow: hidden;
}
a:link,
a:visited {
text-decoration: none;
color: black;
}
.container {
width: 50%;
margin: 0 auto;
position: relative;
min-width: 460px;
}
.textInfo {
width: 100%;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.textInfo > h1 {
font-size: 50px;
}
.textInfo > p {
font-size: 24px;
}
img {
width: 100%;
height: 87vh;
opacity: 0.5;
vertical-align: middle;
}
.img-wrap {
border-width: 4px 4px 0 4px;
border-style: solid;
}
nav > div.container {
width: 100%;
height: 10vh;
margin-bottom: 4px;
}
.nav-wrap {
display: flex;
justify-content: space-between;
align-items: center;
height: 70%;
background-color: skyblue;
padding: 8px;
border-width: 4px;
border-style: solid;
}
.nav-menu > span {
margin-right: 8px;
font-size: 16px;
font-weight: bold;
}
.nav-menu > span:last-child {
margin-right: 0;
}
.footer-wrap > p {
text-align: center;
font-size: 4px;
font-weight: bold;
}
.img-wrap > p {
text-align: center;
font-size: 4px;
font-weight: bold;
}