-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.css
More file actions
66 lines (63 loc) · 1.3 KB
/
Copy pathinterface.css
File metadata and controls
66 lines (63 loc) · 1.3 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
*{
margin: 0;
padding: 0;
}
body {
margin-top: 30vmin;
background-image: linear-gradient(90deg, #548687, #ffffc7);
}
.btns {
display : flex;
margin-top: 4vmin;
gap: 4vmin;
justify-content: center;
}
button{
height: 10vmin;
width: 14vmin;
border-radius: 2vmin;
color: black;
cursor : pointer;
border-color: #548687;
}
h1{
font-size: 12vmin;
opacity: 0;
transform: translateY(50%);
animation: fadeInSlideUp 1s ease-in-out forwards;
transition: transform 0.8s ease-in-out;
display: inline-block;
border-radius: 20px;
padding: 4px;
}
h3 {
font-size : 5vmin;
margin-top: 10vmin;
color: #284747;
}
#comp, #User,h1 {
position: relative;
overflow: hidden;
transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
#comp:hover, #User:hover,h1:hover {
box-shadow: 0px 0px 4px 4px #ffffc7;
background-color: #548687;
color: #ffffc7;
}
#comp:not(:hover), #User:not(:hover), h1:not(:hover) {
box-shadow: none;
background-color: initial;
color: initial;
}
@keyframes fadeInSlideUp {
0% {
opacity: 0;
transform: translateY(50%);
}
100% {
opacity: 1;
transform: translateY(0);
color: #ffffc7;
}
}