-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_styles.css
More file actions
63 lines (49 loc) · 867 Bytes
/
index_styles.css
File metadata and controls
63 lines (49 loc) · 867 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
52
53
54
55
56
57
58
59
60
61
62
63
@charset "UTF-8";
/*
=====================================
BASE STYLES. APPLIED TO ALL DEVICES
=====================================
*/
body header{
text-align: center;
}
body header h1{
font-size: 2.5em;
padding-top: 1.5%;
}
body header p{
font-size: 1.8em;
}
.links{
font-size: 2em;
line-height: 2.5em;
}
footer{
padding-top: 10%;
}
/*
=====================================
MOBILE STYLES (max-width: 480px)
=====================================
*/
@media only screen and (max-width: 480px){
body header p{
display: none;
}
.links{
padding-top: 40%;
font-size: 1.8em;
}
}
/*
=====================================
DESKTOP STYLES (min-width: 481px)
=====================================
*/
@media only screen and (min-width: 481px){
.links{
display: block;
margin: auto;
text-decoration: none;
}
}