-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (79 loc) · 1.93 KB
/
style.css
File metadata and controls
95 lines (79 loc) · 1.93 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
93
94
95
.webtask-red-text, .dropdown-content li>span {
color: #E56E62 !important;
}
.webtask-red {
background-color: #E56E62 !important;
}
.webtask-red-border, .webtask-red-border:focus {
border-color: #E56E62 !important;
}
code {
font-size: 10px;
}
nav {
position: fixed;
z-index: 10;
-webkit-transform: translate(0, -100%);
transform: translate(0, -100%);
}
.header-input {
width: 80%;
}
.sticky-header .header {
position: fixed;
z-index: 10;
-webkit-transform: scale(0.2, 0.2) translate(-220%, -360%);
transform: scale(0.2, 0.2) translate(-220%, -360%);
}
.sticky-header nav {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.sticky-header .header {
-webkit-transform: scale(0.2, 0.2) translate(-215%, -360%);
transform: scale(0.2, 0.2) translate(-215%, -360%);
}
.sticky-header .input-main {
position: fixed;
z-index: 10;
top: 0;
-webkit-transform: scale(0.6, 0.6) translate(4%, 19%);
transform: scale(0.6, 0.6) translate(4%, 19%);
}
.card {
-webkit-transition: -webkit-transform 500ms;
transition: transform 500ms;
}
.card:hover {
-webkit-transform: scale(1.05, 1.05);
transform: scale(1.05, 1.05);
}
.button-container {
padding-bottom: 20px;
}
@media (min-width: 600px) {
.sticky-header .header {
-webkit-transform: scale(0.4, 0.4) translate(-90%, -150%);
transform: scale(0.4, 0.4) translate(-90%, -150%);
}
.sticky-header .input-main {
position: fixed;
z-index: 10;
top: 0;
-webkit-transform: scale(0.6, 0.7) translate(7%, 25%);
transform: scale(0.6, 0.7) translate(7%, 25%);
}
}
@media (min-width: 992px) {
.sticky-header .header {
-webkit-transform: scale(0.5, 0.5) translate(-90%, -140%);
transform: scale(0.5, 0.5) translate(-90%, -140%);
}
.sticky-header .input-main {
position: fixed;
z-index: 10;
top: 0;
-webkit-transform: scale(0.6, 0.7) translate(2%, 25%);
transform: scale(0.6, 0.7) translate(2%, 25%);
}
}