-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
84 lines (76 loc) · 1.19 KB
/
styles.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
body{
background-color: aliceblue;
font-family: sans-serif;
text-align: center;
margin: auto;
}
.head {
margin-top: 10px;
margin-left: auto;
margin-right: auto;
text-align: center;
width: 750px;
font-size: larger;
font-weight: 500;
}
.about{
display: flex;
flex-direction: column;
}
.mail {
font-size: large;
margin-top: -10px;
}
.box{
width: 300px;
height: 300px;
display: flex;
margin: auto;
}
.image{
width: 100%;
}
.write-up {
margin-top: 50px;
text-align: left;
margin-left: 50px;
margin-right: 50px;
}
.li{
line-height: 20px;
}
li {
margin-top: 15pxpx;
font-size: large;
font-weight: bold;
}
.foot {
margin-top: 70px;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
padding: 5px;
}
p{
font-size: large;
}
@media (max-width: 768px) {
body {
padding: 20px;
background-color: lightblue;
}
.head{
font-size: small;
font-weight: 100;
width: auto;
}
.write-up {
margin-top: 20px;
margin: 10px;
}
.box {
width: 100px;
height: 100px;
margin: auto;
}
}