-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.css
124 lines (106 loc) · 1.93 KB
/
card.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
121
122
123
124
.main {
display: flex;
flex-direction: column;
gap: 0.5em;
}
.up {
display: flex;
flex-direction: row;
gap: 0.5em;
}
.down {
display: flex;
flex-direction: row;
gap: 0.5em;
}
.card1 {
width: 50px;
height: 50px;
outline: none;
border: none;
background: white;
border-radius: 90px 5px 5px 5px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
transition: .2s ease-in-out;
}
.instagram {
margin-top: 1.5em;
margin-left: 1.2em;
fill: #cc39a4;
}
.card2 {
width:50px;
height: 50px;
outline: none;
border: none;
background: white;
border-radius: 5px 90px 5px 5px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
transition: .2s ease-in-out;
}
.twitter {
margin-top: 1.5em;
margin-left: -.9em;
fill: #03A9F4;
}
.card3 {
width: 50px;
height:50px;
outline: none;
border: none;
background: white;
border-radius: 5px 5px 5px 90px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
transition: .2s ease-in-out;
}
.github {
margin-top: -.6em;
margin-left: 1.2em;
}
.card4 {
width: 50px;
height: 50px;
outline: none;
border: none;
background: white;
border-radius: 5px 5px 90px 5px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
transition: .2s ease-in-out;
}
.discord {
margin-top: -.9em;
margin-left: -1.2em;
fill: #8c9eff;
}
.card1:hover {
cursor: pointer;
scale: 1.1;
background-color: #cc39a4;
}
.card1:hover .instagram {
fill: white;
}
.card2:hover {
cursor: pointer;
scale: 1.1;
background-color: #03A9F4;
}
.card2:hover .twitter {
fill: white;
}
.card3:hover {
cursor: pointer;
scale: 1.1;
background-color: black;
}
.card3:hover .github {
fill: white;
}
.card4:hover {
cursor: pointer;
scale: 1.1;
background-color: #8c9eff;
}
.card4:hover .discord {
fill: white;
}