-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
62 lines (50 loc) · 983 Bytes
/
index.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
@import url(main.css);
/******* introduction *******/
#intro {
height: 100vh;
min-height: 800px;
max-width: 800px;
margin: auto;
margin-top: 15vh;
}
#intro h1 {
margin: auto;
text-align: left;
font-size: 4em;
color: var(--text-color);
}
#intro p {
font-size: 2.5em;
text-align: left;
color: var(--text-color);
}
/*** responsive for tablet ***/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
#intro {
padding: 10px;
margin-left: auto;
margin-right: auto;
}
#intro h1 {
font-size: 4em;
}
#intro p {
text-align: left;
font-size: 2.5em;
}
}
/*** responsive for phones ***/
@media only screen and (max-width: 767px) {
#intro {
padding: 10px;
margin-left: auto;
margin-right: auto;
}
#intro h1 {
font-size: 4em;
}
#intro p {
text-align: left;
font-size: 2.5em;
}
}