-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdepartments.css
86 lines (74 loc) · 1.76 KB
/
departments.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
section {
padding: calc(var(--basic_size) * 2) 0;
}
/* title styling */
.max_title {
font-size: var(--font_title_size);
text-align: center;
font-weight: bolder;
margin-bottom: 25px;
color: var(--yellow-color);
margin-top: calc(var(--basic_size) * 12);
}
/* department styling */
.department {
display: flex;
border: var(--yellow-color) var(--basic_size) solid;
border-radius: calc(var(--basic_size) * 5);
padding-bottom: calc(var(--basic_size) * 3);
margin-top: calc(var(--basic_size) * 2);
min-width: calc(var(--basic_size) * 30);
margin-left: -50px !important;
padding-left: calc(var(--basic_size) * 2);
padding-right: calc(var(--basic_size) * 2);
}
.department .column-left {
width: 50%;
}
.department .column-left img {
padding-top: calc(var(--basic_size) * 2);
border-radius: calc(var(--basic_size) * 5);
min-width: calc(var(--basic_size) * 23);
@media (min-width: 400px;) {
padding-left: calc(var(--basic_size) * 2);
}
}
.department .column-right {
width: 50%;
/* padding-left: calc(var(--basic_size) * 2); */
}
.department .column-right .subtitle {
text-align: center;
font-weight: bolder;
font-size: 28px;
font-family: monospace;
color: var(--yellow-color);
margin-bottom: calc(var(--basic_size) * 2);
margin-top: calc(var(--basic_size) * 4);
}
.department .column-right .text {
color: var(--yellow-color);
margin-top: 5px;
}
.department .column-right .areas {
margin-left: 25px;
}
.department .column-right .skills {
margin-left: 25px;
}
/* responsive styling */
@media (max-width: 1300px) {
.department {
display: block;
}
.department .column-left {
width: 100%;
text-align: center;
}
.department .column-left img {
width: 80%;
}
.department .column-right {
width: 100%;
}
}