-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
85 lines (72 loc) · 1.19 KB
/
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
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
width: 350px;
height: 1050px;
font-size: 12px;
}
/* Container Main CSS */
.container-main {
margin: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
/* Box CSS */
.box {
display: flex;
justify-content: space-between;
min-height: 70px;
width: 300px;
border: 3px solid #4285f4;
border-radius: 15px;
margin-bottom: 25px;
cursor: pointer;
}
img {
width: 29px;
height: 33.14px;
}
.box-content {
margin: 8px 16px;
line-height: 17.06px;
}
.image-container {
display: flex;
flex-direction: column;
justify-content: space-around;
background-color: #4285f4;
/* border: 3px solid #4285f4; */
border-radius: 15px;
transition: all 0.4s;
margin: 1px;
margin-right: 1.5px;
}
img {
margin: 0px 16px;
}
.hidden {
display: none !important;
}
.box:hover {
transform: scale(1.05);
transition: all 0.4s;
}
.active {
border: 3px solid #46f898;
}
.active .image-container {
background-color: #46f898;
border: 3px solid #46f898;
}
/* Home Image CSS */
.home-image {
width: 380px;
height: auto;
position: sticky;
top: 60px;
}