-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (126 loc) · 2.1 KB
/
style.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
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
122
123
124
125
126
127
128
129
130
body{
font-family: sans-serif;
background-color: #DEFCF9;
}
.top-bar ul li{
display: inline-block;
margin: 4px;
}
.top-bar ul li a{
text-decoration: none;
color: black;
margin: 8px;
font-size: 10px;
}
.top-bar ul li a:hover{
color: #362FD9;
}
.top-bar{
margin-right: 50px;
margin-top: 20px;
text-align: right;
}
.pic-info{
font-family: serif;
text-align: center;
}
.pic-info img{
width: 120px;
height: 120px;
border-radius: 60px;
}
.mj{
color: #362FD9;
font-size: 30px;
margin: 0px;
}
.web{
margin: 10px;
}
.web span{
color: #362FD9;
display: block;
}
hr{
border: dotted rgb(180, 180, 180) 5px;
border-bottom: none;
width: 20%;
margin: 30px auto;
}
.container-2{
width: 75%;
margin: 50px auto 50px;
vertical-align: center;
}
.container-2 img{
width: 100px;
height: 100px;
border-radius: 50px;
float: left;
margin-right: 20px;
}
.info h1{
font-size: 16px;
font-family: serif;
}
.info p{
font-size: 10px;
}
.container-3{
vertical-align: center;
text-align: center;
}
.container-3 p{
display: inline-block;
margin: 15px;
}
.container-3 a img{
width: 20px;
height: 20px;
border-radius: 10px;
margin-bottom: -5px;
}
.contect{
font-size: 12px;
margin-left: 20px;
color: #362FD9;
}
.copy{
font-size: 8px;
text-align:center;
}
@media (max-width: 480px){
.top-bar{
display: none;
}
.container-2 img{
float: none;
}
.info p{
font-size: 13px;
}
}
@media (min-width: 480px) and (max-width: 720px){
.top-bar ul li a{
font-size: 18px;
}
.top-bar{
margin-right: 30px;
}
.mj{
font-size: 40px;
}
.web{
font-size: 30px;
}
hr{
border: dotted rgb(174, 174, 174) 10px;
border-bottom: none;
}
.info h1{
font-size: 24px;
}
.info p{
font-size: 18px;
}
}