-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathProjectPage.module.scss
More file actions
65 lines (56 loc) · 1.03 KB
/
ProjectPage.module.scss
File metadata and controls
65 lines (56 loc) · 1.03 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
.descriptionContainer {
display: flex;
flex-direction: column;
gap: 8px;
padding: 0px 100px 0;
}
.title {
display: flex;
justify-content: center;
font-weight: bold;
font-size: 36px;
color: #0b008e;
}
.star {
width: 51px;
height: 51px;
background-image: url("../../public/Star.svg");
margin: -30px 0 0 -15px;
display: flex;
justify-content: center;
align-items: center;
}
.star::after {
content: attr(data-stars);
transform: rotate(30deg);
font-size: 12px;
color: black;
}
.description {
font-size: 1.6rem; // Based on 10px.
}
.infoContainer {
direction: ltr;
padding: 50px 0 0 0;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
}
.license {
font-size: 14px;
font-weight: bold;
}
@media only screen and (max-width: 600px) {
.descriptionContainer {
padding: 0px 10px 0;
}
.infoContainer {
flex-direction: column;
justify-content: flex-end;
direction: rtl;
}
.description {
font-size: 1.556rem; // Based on 9px.
}
}