-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkills.module.css
95 lines (92 loc) · 1.54 KB
/
Skills.module.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
88
89
90
91
92
93
94
95
.skills_container {
display: flex;
align-items: center;
margin: 3rem 0 3rem 0;
flex-direction: column;
width: 100%;
min-height: 73.5vh;
}
.skills_title {
background: #050505;
display: flex;
justify-content: center;
align-items: center;
color: #23ce6b;
width: 100%;
height: 120px;
margin: 0 0 5rem 0;
}
.skills_title > h1 {
font-size: 2.5rem;
}
.skills_box {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 900px;
}
.skill {
background: linear-gradient(
0deg,
rgba(33, 11, 95, 1) 0%,
rgba(40, 0, 155, 1) 95%
);
width: 200px;
height: 148px;
margin: 0.6rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
transition: ease-in-out 0.5s;
-webkit-transition: ease-in-out 0.5s;
-moz-transition: ease-in-out 0.5s;
-ms-transition: ease-in-out 0.5s;
-o-transition: ease-in-out 0.5s;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-o-border-radius: 8px;
}
.icon {
display: flex;
align-items: center;
height: 45%;
}
.name {
font-size: 1.25rem;
color: #fff;
}
.year {
font-size: 1rem;
color: #fff;
}
@media screen and (max-width: 1199px) {
.skills_container {
margin: 1.5rem 0 3rem 0;
}
.skills_box {
width: 750px;
}
}
@media screen and (max-width: 767px) {
.skills_container {
margin: 2rem 0;
}
.skills_box {
width: 540px;
}
}
@media screen and (max-width: 540px) {
.skills_container {
margin: 0 0 2rem 0;
}
.skills_title > h1 {
font-size: 1.8rem;
}
.skills_box {
width: 340px;
}
}