-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (47 loc) · 1.03 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
html, body {
height: 100%;
width: 100%;
}
.row{
justify-content: center;
border: 1px solid black;
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 80px;
}
.body{
background: green;
background-image: url(https://www.hp.com/us-en/shop/app/assets/images/uploads/prod/5%20Best%20Coding%20Programs%20for%20Aspiring%20Programmers1650304687858345.jpg);
}
.row {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
grid-gap: 20px;
}
.row{
display: grid;
grid-template-rows: max-content 200px 1fr;
}
.row {
object-fit: cover;
width: 100%;
height: 100%;
}
.jumbotron{
margin-top: 4rem;
border: 1px solid black;
}
.display-4{
text-decoration-color: whitesmoke;
text-shadow : 2px 2px
}
.button{
background-color:green;
}
.p{
text-decoration: bold
}
.name{
font-family:"Fantasy"
}