-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathschool.css
More file actions
85 lines (72 loc) · 1.25 KB
/
school.css
File metadata and controls
85 lines (72 loc) · 1.25 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.schoolwork{
display: flex;
flex-direction: column;
align-items: center;
}
.headingschool{
font-family: 'Museomoderno';
font-size: 40px;
margin: 10px 2px;
}
.schoolpara{
font-family: 'Oxygen Mono';
font-size: 28px;
padding: 5px 0;
}
.schoolpara a{
font-size: 25px;
}
/* Big screen mobile view */
@media only screen and (max-width:797px){
.headingschool{
font-size: 37px;
}
.schoolpara{
font-size: 22px;
}
.schoolpara a{
font-size: 18px;
}
.schoolview{
height: 100vh;
}
}
/* mobile view */
@media only screen and (max-width:548px){
.headingschool{
font-size: 32px;
}
.schoolpara{
font-size: 18px;
}
.schoolpara a{
font-size: 15px;
}
}
/* small screen mobile view */
@media only screen and (max-width:481px){
.headingschool{
font-size: 25px;
}
.schoolpara{
font-size: 16px;
}
.schoolpara a{
font-size: 13px;
}
}
@media only screen and (max-width:371px){
.headingschool{
font-size: 20px;
}
.schoolpara{
font-size: 14px;
}}
.schoolpara a{
font-size: 10px;
}