-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (77 loc) · 1.46 KB
/
styles.css
File metadata and controls
80 lines (77 loc) · 1.46 KB
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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: sans-serif;
}
.header {
background-color: steelblue;
color: aliceblue;
padding: 20px;
text-transform: uppercase;
text-align: center;
border-bottom: 5px solid rgb(236, 217, 147);
position:fixed;
top:0;
width:100vw;
z-index:3;
}
.course {
margin: auto;
width: 100vw;
max-width: 1200px;
height:100vh;
background-color: rgb(255, 255, 255);
box-shadow: 0 0 10px 1px rgba(225, 225, 225, 0.8);
border: 1px solid rgb(252, 250, 250);
display: flex;
flex-direction:row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
padding:10rem 20px;
gap:16px;
}
.course::after {
content:"";
width:350px;
}
.img-1 {
width: 100%;
max-width: 350px;
height: 200px;
background-color: white;
box-shadow: 0 0 15px 1px rgba(225, 225, 225, 0.8);
text-align: center;
text-transform: uppercase;
padding:0px;
border-radius: 10px;
}
.course img {
width: 100%;
max-width: 350px;
height: 150px;
object-fit: cover;
justify-content: center;
align-items: center;
position:relative;
border-start-start-radius: 10px;
border-start-end-radius: 10px;
}
.nivel::after {
text-transform: capitalize;
content: 'Avanzado';
font-size: 18px;
}
.nivel{
width:100px;
height:30px;
color: aliceblue;
background-color:black;
position: relative;
bottom:160px;
margin-left:10px;
padding:5px;
border-radius: 20px;
}