-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (66 loc) · 1.02 KB
/
style.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
body{
margin: 0 auto;
}
.landingPage{
margin: 0 auto 0 auto;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: #F5F4F2;
min-height:100vh;
}
h1 {
font-family: 'Inconsolata', monospace;
color: #2474C6;
font-size: 5rem;
margin: 0;
}
section p{
font-family: 'Montserrat', sans-serif;
font-size: 3rem;
}
section p.link {
font-family: 'Montserrat', sans-serif;
font-size: 2rem;
}
#about p{
font-family: 'Montserrat', sans-serif;
font-size: 1.25rem;
}
h1, p, section{
text-align: center;
}
code {
background-color: #EFF0EE;
padding: 1px;
color: #C23054;
border-radius: 5px;
font-weight: bold;
font-size: 1.25rem;
}
#tech-stack p{
font-size: 1.5rem;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: underline;
}
article p{
text-align: left;
}
article {
margin: 5% 10%;
}
img {
max-width: 50%;
height: auto;
}