-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (42 loc) · 707 Bytes
/
style.css
File metadata and controls
51 lines (42 loc) · 707 Bytes
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
header{
background-color: #2A7DFB;
font-size: 1.2vw;
color: #ffffff;
}
.header-container{
display: flex;
}
.header-menu{
margin-left: 4%;
padding: 1% 0;
}
.top-text{
text-align: center;
background-color: inherit;
font-size: 10vw;
font-family: "myfont";
}
@font-face {
font-family: "myfont";
src: url(AlsScript-KdrD.ttf) format("opentype");
}
.content img {
width: 100%;
}
.grid{
display: grid;
gap: 60px;
grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
margin: 0 50px;
}
/* ã“ã“ã¾ã§ */
.item li {
list-style: none;
}
footer{
background-color: #2A7DFB;
font-size: 1.5vw;
color: #ffffff;
text-align: center;
padding: 1% 0;
}