-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
77 lines (58 loc) · 823 Bytes
/
main.css
File metadata and controls
77 lines (58 loc) · 823 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
#title{
font-size: 100px;
}
#me{
height: 300px;
width: 300px;
}
#head{
color: black;
}
#oas{
height: 300px;
width: 450px;
}
.featured-img{
opacity: 1.0;
}
.featured-img:hover{
opacity: 0.5;
}
.badge{
color: white;
}
.description{
font-size: 20px;
}
.home{
text-align: center;
}
.about{
background-color: #dddddd;
text-align: left;
min-height: 90vh;
}
.introduction{
align-items: center;
}
.container-fluid{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 90vh;
}
.grid-container{
display: grid;
grid-template-columns: repeat( 3, minmax(250px, 1fr) );
grid-row-gap: 20px;
grid-column-gap: 20px;
}
.container{
text-align: left;
}
.card{
display: flex;
justify-content: center;
text-align: left;
}