-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
120 lines (97 loc) · 1.76 KB
/
main.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
a{
display: flex;
padding-bottom: 15px;
padding-top: 15px;
}
.avatar{
padding-top: 4em;
}
.back-page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0.2;
}
.info {
display: grid;
grid-template-columns: 4fr 2fr;
font-weight: bold;
font-size: 17px;
}
.details{
font-size: 20px;
padding-left: 0;
}
.trophy{
padding-top: 10em;
width: 90%;
height: 70%;
}
.trophy:hover{
cursor: pointer;
}
.contacts{
flex-direction: row;
align-items: center;
}
.name{
font-size:3em;
font-weight: bold;
margin-bottom: -1px;
}
.job{
font-size:2em;
font-weight:400;
}
.list{
font-size: 20px;
}
@media only screen and (min-width: 100px) and (max-width: 991px) {
article {
width: 723px;
margin-top: calc((100% - 723px) / 2);
margin-bottom: calc((100% - 723px) / 2);
}
.divider{
width: 42em !important;
}
.row{
flex-direction: column !important;
}
.info{
display: flex;
flex-direction: column;
}
.avatar{
width: auto;
}
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
article {
width: 933px;
margin-top: calc((100% - 933px) / 2);
margin-bottom: calc((100% - 933px) / 2);
}
.avatar{
width: auto;
}
.row{
flex-direction: column !important;
}
.divider{
width: 58em !important;
}
.info{
display: flex;
flex-direction: column;
}
}
@media only screen and (min-width: 1200px) {
article {
width: 1127px;
margin-top: calc((100% - 1127px) / 2);
margin-bottom: calc((100% - 1127px) / 2);
}
}