-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
83 lines (62 loc) · 1018 Bytes
/
main.css
File metadata and controls
83 lines (62 loc) · 1018 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*FONTS
font-family: 'Inconsolata', monospace;
font-family: 'Noto Sans', sans-serif;
*/
body{
background-color:black;
font-family: 'Noto Sans', sans-serif;
}
.main{
display:flex;
height: 100vh;
width:100%;
align-items: center;
justify-content: center;
flex-direction: column;
}
h1 {
color: #fff;
font-size: 32px;
font-family:'Inconsolata', monoespace;
text-align: center;
}
p {
color: #fff;
text-align: center;
font-size:24px
}
ul {
color: #fff;
}
fa-twitter{
color: #fff;
margin: 10px;
}
fa-github{
color: #fff;
margin:10px;
}
fa-dev{
color: #fff;
margin:10px;
}
a {
color: #fff;
text-decoration: none;
}
img {
max-width: 100%;
height: auto;
}
/* MEDIA QUERY*/
/* If the screen size is 600px wide or less */
@media screen and (max-width: 600px) {
p{
color: #fff;
text-align:center;
font-size:14px
}
h1 {
font-size: 18px;
}
}