-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
93 lines (92 loc) · 1.93 KB
/
index.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
html,body {
height: 90%;
width: 100%;
margin: 0px;
padding: 0px;
}
.logo {
/* background-image: url("Resourses/flag-orpheus-top.svg"); */
background-repeat: no-repeat;
background-position: left top;
background-size: contain;
cursor: pointer;
flex-shrink: 0;
width: 172px;
height: 100px;
transition: transform 0.1875s cubic-bezier(0.375, 0, 0.675, 1) 0s;
transform-origin: left top 0px;
transform: scale(0.875);
}
.logo:hover, .logo:focus {
animation: animation-472zo1 0.5s linear infinite alternate;
animation-name: animation-472zo1;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-fill-mode: none;
animation-play-state: running;
}
* {
box-sizing: border-box;
}
#ComingSoon {
object-fit: cover;
position: fixed;
/* margin: auto; */
/* min-width: 100%;
min-height: 100%; */
width: 100%;
height: 100%;
top: 0px;
bottom: 0px;
left: 0px;
padding: .5px;
border-radius: 5px;
}
.head {
position: relative;
top: 0;
color: #f1f1f1;
width: 100%;
padding-left: 10px;
}
.foot {
position: fixed;
left: 84.5%;
bottom: 1%;
color: #f1f1f1;
width: 14%;
/* padding: 2px; */
}
.contact {
text-align: left;
font-family: 'Caveat', cursive;
font-family: 'Playfair Display', serif;
font-size: 30px;
}
.connect {
padding-right: 15px;
}
@media only screen and (max-width:768px){
.foot {
position: fixed;
left: 75%;
top: 60.5%;
color: #f1f1f1;
width: 30%;
/* padding: 2px; */
}
.contact {
text-align: left;
font-weight: bolder;
font-family: 'Caveat', cursive;
font-family: 'Playfair Display', serif;
font-size: 20px;
}
.connect {
padding-right: 10px;
size: 10px;
}
}