-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutStyle.css
More file actions
138 lines (118 loc) · 2 KB
/
AboutStyle.css
File metadata and controls
138 lines (118 loc) · 2 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
117
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');
*{
margin: 0;
padding: 0;
}
a {
text-decoration:none;
}
h1{
font-family: 'Noto Serif TC', serif;
font-size: 300%;
text-align: center;
margin-top: 10px;
}
.en{
font-family: 'Alice', serif;
font-size: 250%;
}
.student{
font-family: 'Rosario', sans-serif;;
font-size: 150%;
color: white;
}
.school{
font-family: 'Rosario', sans-serif;;
font-size: 80%;
color: white;
}
h2{
margin-bottom: 3px;
margin-top: 3px;
text-align: center;
font-family: 'Rosario', sans-serif;
}
.lsit{
display: flex;
justify-content: center;
align-items: center;
}
.logo{
width: 160px;
cursor: pointer;
}
.container{
display: flex;
justify-content: center;
align-items: center;
}
.navbar{
width: 85%;
margin: auto;
padding: 35px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
nav{
flex: 1;
padding-left: 30%;
margin: auto;
}
nav ul li{
display: inline-block;
font-family: serif;
font-size: 130%;
list-style: none;
margin: 0px 30px;
position:relative;
}
nav ul li::after{
content: '';
height: 3px;
width: 0;
background: #808080;
position: absolute;
left: 0;
bottom: -10px;
transition: 0.5s;
}
nav ul li:hover::after{
width: 100%;
}
.linker{
margin-left: auto;
margin-right: auto;
padding-bottom: 10%;
}
td{
padding: 30px;
}
nav ul li a{
text-decoration-color: none;
color: #333;
}
.my-img{
display: inline-block;
height: 350px;
position: static;
align-content: center;
margin-top: 2%;
bottom: 10%;
}
html, body {
height: 100%;
margin: 0;
}
.wrapper {
min-height: calc(100% - 50px); /*減去footer高度*/
}
.footer {
height: 50px; /*設定footer本身高度*/
background-color: yellow;
}
.title{
padding-bottom: 3%;
font-family: 'Delius', cursive;
color: #808080;
}