-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (46 loc) · 1.33 KB
/
style.css
File metadata and controls
56 lines (46 loc) · 1.33 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
#rectangles {
width: 50vw;
height:60vh;
margin: auto;
margin-top: 5vh;
display:run-in;
justify-content: center;
}
#rectangle1 {
width: 50vw;
height:40vh;
background: rgb(7,65,158);
background: linear-gradient(90deg, rgba(7,65,158, 1) 0%, rgb(0, 255, 255, 1) 100%);
border-radius: 3vh;
box-shadow: rgba(0, 0, 0, 0.12) 0px -12px 10px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Bebas Neue', cursive;
color: rgb(246, 250, 253);
font-size: 8vw;
animation-name: text-appear;
animation-duration: 2s;
}
#rectangle2 {
width: 50vw;
height:8vh;
background: rgb(180, 222, 233);
border-radius: 3vh;
box-shadow: rgba(0, 0, 0, 0.12) 0px -12px 10px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 3vh;
font-family:Arial, Helvetica, sans-serif;
font-style: italic;
color: rgb(246, 250, 253);
font-size: 3.5vmin;
border: none;
animation-name: text-appear;
animation-duration: 2s;
}
@keyframes text-appear{
from {opacity: 0%;}
to {opacity: 100%;}
}