forked from 55577799/practice
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (94 loc) · 1.53 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (94 loc) · 1.53 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap" rel="stylesheet');
html,
body {
height: 100%;
}
.greetings,
p,
h1,
h2 {
font-family: 'Noto Serif JP', serif;
}
.flex-container {
display: flex;
flex-direction: column;
margin: 0 auto;
max-width: 1200px;
background-color: #E6E6E6;
padding: 5px;
height: 100%;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
height: 25%;
margin-bottom: 3em;
background-color: #CED8F6;
}
ul {
display: flex;
list-style-type: none;
}
ul li {
margin-right: 20px;
}
li a {
text-decoration: none;
font-family: 'Noto Serif JP', serif;
font-size: 1.5rem;
color: #848484;
font-weight: 800;
}
.logo img {
width: 70px;
height: 70px;
margin-left: 10px;
}
.about_me {
display: flex;
flex-direction: column;
flex: 1 0 auto;
}
.data {
display: flex;
align-items: center;
}
.fullname {
margin-right: 20px;
flex-basis: 750px;
}
.myImg {
margin-top: 150px;
padding-left: 20px;
flex-basis: 450px;
}
.knowledge {
display: flex;
justify-content: center;
}
.article {
margin-top: 2em;
}
p {
font-size: 1.2rem;
color: #08298A;
padding-left: 20px;
}
.text {
font-size: 1rem;
color: #585858;
}
h2 {
text-align: center;
color: #424242;
}
h1 {
color: #08298A;
text-align: center;
font-size: 2rem;
}
.footer {
background-color: #5882FA;
flex: 0 0 auto;
}