-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (79 loc) · 1.46 KB
/
style.css
File metadata and controls
92 lines (79 loc) · 1.46 KB
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
:root {
--body-bg-color: #FAF7FD;
--purple: #BB99DD;
}
* {
margin: 0;
padding: 0;
box-sizing: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Poppins', sans-serif;
min-height: 100vh;
background-color: var(--body-bg-color);
color: var(--purple);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.container > img {
width: 200px;
height: 200px;
padding: 5px;
border-radius: 50%;
border: 2px solid var(--purple);
outline: none;
margin-bottom: 22px;
}
.container > a {
text-decoration: none;
color: var(--purple);
margin-bottom: 33px;
}
.container > a:hover {
text-decoration: underline;
}
.cardLink li {
width: 100vw;
max-width: 330px;
padding: 12px;
margin-bottom: 16px;
list-style: none;
text-align: center;
border: 1px solid ;
outline: none;
}
.cardLink li a {
text-decoration: none;
color: var(--purple);
transition: all .4s ease;
}
.cardLink li a:hover {
font-weight: bold;
transition: all .4s ease;
}
.cardLink li:last-child {
margin-bottom: 68px;
}
.logoImage {
display: flex;
justify-content: space-around;
min-width: 240px;
list-style: none;
}
.logoImage img:hover {
animation: rotate infinite 2s linear;
}
@keyframes rotate {
from {
transform: rotateY(0deg);
}
to {
transform: rotateY(359deg);
}
}