-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (50 loc) · 871 Bytes
/
style.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
* {
box-sizing: border-box;
}
.container {
background-color: #f0f8ff;
height: 0 auto;
}
/* .btn:hover {
background-color: red;
} */
#iin,
#vsao,
#apgPers,
#neapMin {
width: 100px;
height: 23px;
margin: 5px;
background-color: #e9ecef;
text-align: center;
}
.btn:active {
background-color: rgb(73, 70, 70);
transition: 0.1s;
}
.summary {
display: none;
}
#aprekinat {
transition: 0.3s linear;
display: block;
width: 150px;
height: 60px;
}
#aprekinat:hover {
transform: rotateX(25deg);
box-shadow: 0 11px 10px #00a8ff;
}
.image {
background-image: url(images/salary.png);
background-position: center;
width: 100%;
height:200px;
background-size: contain;
background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
.image{
display: none;
}
}