-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysite.css
70 lines (61 loc) · 1.07 KB
/
mysite.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
.button{
position: relative;
display: inline-block;
}
.button div {
width: 160;
height: 59;
background-image: linear-gradient(#626262, #000);
border-radius: 9px;
}
.button div:hover {
background-image: linear-gradient(#b0b0b0, #353535);
cursor: pointer;
}
.button h3 {
margin: 0;
padding: 19 0 19 0;
user-select: none;
}
.imgc h3 {
color: white;
font-family: Ultra;
display: inline-block;
align-self: center;
width: 33%;
text-align: center;
}
.imgc {
min-height: 300px;
outline: 1px solid red;
align-items: center;
display: flex;
justify-content: space-around;
}
.imgc h4 {
font-family: Arial;
color: white;
width: 33%;
text-align: center;
margin-right: 3%;
align-content: center;
}
.imgc img {
width: 33%;
object-fit: contain;
margin-right: 3%;
max-height: 100%;
}
.imgc div {
display: flex;
height: 100%;
align-content: center;
width: 100%;
margin: 30 0 30 0;
}
@media screen and (max-width: 1000px) {
.imgc div {
flex-direction: column;
align-items: center;
}
}