-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
63 lines (52 loc) · 898 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
63
body {
font-family: 'Poppins', sans-serif;
background-color: #303841;
}
#navbar {
background: #be3144;
height: 50px;
}
nav {
text-align: right;
/* background-color: green; */
padding: 15px 10px;
margin-right: 30px;
}
nav a {
text-decoration: none;
color: white;
}
#welcome-section {
width: 100%;
text-align: center;
margin: auto;
padding-top: 100px;
}
#welcome-section h1 {
color: #fff;
}
#projects {
text-align: center;
}
#projects a{
text-decoration: none;
color: aliceblue;
}
#profile-link {
text-align: center;
margin-top: 20px;
}
#profile-link a{
text-decoration: none;
color: aliceblue;
}
@media screen and (max-width:480px){
#welcome-section h1{
width: 80%;
text-align: center;
margin: auto;
font-size: 1.2rem;
padding-top: 100px;
margin-bottom: 50px;
}
}