-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkoszyk.css
87 lines (72 loc) · 1.25 KB
/
koszyk.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
81
82
83
84
85
86
87
@import url("style.css");
main {
display: flex;
justify-content: center;
width: 100%;
height: 250vh;
}
main>section {
width: 90%;
}
h1 {
font-size: 2.4em;
text-align: center;
margin: 30px 0 60px 0;
}
.course-box {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
.course {
display: flex;
flex-direction: column;
background-color: rgb(240, 238, 238);
width: 25%;
text-align: start;
border: 1.5px solid rgb(47, 255, 29);
border-radius: 3%;
margin-bottom: 50px;
}
a {
text-decoration: none;
}
a:active {
color: black;
}
.course h2 {
padding: 5px 15px;
color: black;
}
.course p {
padding: 1px 15px;
color: black;
}
.course .price,
.opinion {
font-weight: 550;
}
.course img {
width: 100%;
height: 200px;
border-radius: 3.8% 3.8% 0% 0%;
}
.author {
color: #6a6f73;
padding: 5px 0;
}
form {
display: flex;
justify-content: space-around;
}
form>input {
width: 30%;
margin: 10px 0 20px 0;
padding: 3px 30px;
text-align: center;
}
.confirmation {
text-align: center;
font-size: 1.4em;
margin: 3px 0 10px 0;
}