-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTEAM.css
129 lines (124 loc) · 2.83 KB
/
TEAM.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
125
126
127
128
129
html body {
background-color: black;
margin: 0 0 0 0;
}
.infocardContainer * {
font-family: 'Fira Sans Condensed', sans-serif;
font-weight: 300;
}
h1{
font-size: 43px;
color: rgb(15, 199, 199);
text-shadow: 3px 2px rgb(224, 235, 236);
text-align: center;
letter-spacing: 5px;
text-decoration: underline;
}
h2 {
font-weight: 600; font-style: italic; font-family: "Fira Sans Condensed", sans-serif;
}
header {
height: 2em;
background-color: #111122;
margin: 0 0 0 0;
padding: auto;
font-size: 2em;
text-align: center;
line-height: 2em;
color: white;
}
a {
text-decoration: none;
}
a:visited {
color: #555566;
}
a:hover {
text-decoration: underline;
}
.infocardContainer {
display: flex;
height: 200px;
width: 200px;
border-radius: 100px;
background: rgb(0,159,255);
background: linear-gradient(121deg, rgba(255,255,255,0) 13%, rgba(0,159,255,1) 100%);
transition: all 500ms ease-in;
transition-delay: 1s;
margin: auto;
margin-top: 100px;
--margin-top: 100px;
}
.infocardContainer:hover {
width: 500px;
border-radius: 100px 10px 100px 100px;
transition: all 1s ease-out;
}
.infocardContainer div {
text-color: white;
flex-shrink: 1;
width: 100%;
--background-color: green;
}
.infocardContainer div * {
display: flex;
--flex: inherit;
overflow: hidden;
text-overflow: hidden;
--background-color: yellow;
color: white;
white-space: nowrap;
width: 0;
height: auto;
transition: all 450ms ease-in;
transition-delay: 1s;
}
.infocardContainer:hover div *{
--background-color: purple;
display: flex;
visibility: visible;
transition: all 1s ease-out;
transition-delay: 500ms;
width: 100%;
height: auto;
}
.infocardContainer #main, .infocardContainer #main img{
--background-color: red;
height: 200px;
width: 200px;
padding-right: 10px;
border-radius: 100%;
flex-shrink: 0;
object-fit: cover;
}
.infocardContainer #main img{
height: 180px;
width: 180px;
transition: none;
display: float;
position: relative;
border: 10px solid white;
margin: 0 0 0 0; padding: 0 0 0 0;
}
.infocardContainer #textbois {
position: relative;
}
.infocardContainer #textbois #hotlinks {
max-width: 60%;
max-height: 30px;
--background-color: white;
position:absolute;
bottom: 5px;
display: flex;
justify-content: space-between;
border-radius: 13px;
}
.infocardContainer #textbois #hotlinks * {
background-color: white;
max-width: 30px;
--margin: 0 1px 0 1px;
border-radius: 25px;
}
/*TODO: animate copy main transition style for info*/
.infocardContainer #textbois #hotlinks *:hover {
}