-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
152 lines (143 loc) · 3.87 KB
/
style.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
body {
background: #1488cc;
/* fallback for old browsers */
background: linear-gradient(to left, #eef0ff, #c9e3ff);
/* height: 100vh; */
font-family: "Josefin Sans", sans-serif;
}
/* button {
width: 80px;
height: 50px;
margin: 2px 1px 2px 1px;
font-size: 13px;
color: white;
background-color: rgb(51, 51, 51);
border: none;
border-radius: 5px;
box-shadow: 0 9px rgba(104, 104, 104, 0.5);
} */
/* button:active {
} */
/* button {
height: 48px;
border-radius: 8px;
font-size: 1rem;
font-weight: 400;
line-height: 18px;
color: #3488fa;
border: 1px solid #3488fa;
background-color: #3488fa;
color: #ffffff;
cursor: pointer;
transition: background-color 0.3s;
}
button:focus, button:active {
box-shadow: 0 5px rgba(104, 104, 104, 0.5);
transform: translateY(4px);
}
button.gost-button {
color: #3488fa;
background-color: #ffffff;
border: 1px solid #3488fa;
}
button.gost-button:hover {
background-color: #3488fa;
color: #ffffff;
} */
button {
position: relative;
display: inline-block;
cursor: pointer;
outline: none;
border: 0;
vertical-align: middle;
text-decoration: none;
font-size: inherit;
font-family: inherit;
}
button.learn-more {
font-weight: 600;
color: #382b22;
text-transform: uppercase;
padding: 1.25em 2em;
background: #fff0f0;
border: 2px solid #b18597;
border-radius: 0.75em;
transform-style: preserve-3d;
transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.learn-more::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #f9c4d2;
border-radius: inherit;
box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #eef0ff;
transform: translate3d(0, 0.75em, -1em);
transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
}
button.learn-more:hover {
background: #ffe9e9;
transform: translate(0, 0.25em);
}
button.learn-more:hover::before {
box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #eef0ff;
transform: translate3d(0, 0.5em, -1em);
}
button.learn-more:active {
background: #ffe9e9;
transform: translate(0em, 0.75em);
}
button.learn-more:active::before {
box-shadow: 0 0 0 2px #b18597, 0 0 #eef0ff;
transform: translate3d(0, 0, -1em);
}
/* #video {
background-color: #ddd;
border-radius: 7px;
margin: 10px 0px 0px 10px;
width: 300px;
height: 300px;
z-index: -1;
transform: scaleX(-1);
} */
/* #canvas {
background-color: #ddd;
border-radius: 7px;
margin: 10px 0px 0px 10px;
width: 300px;
height: 300px;
z-index: -1;
transform: scaleX(-1);
} */
#video {
max-width: calc(50% - 100px);
background-color: rgb(250, 244, 250);
z-index: -1;
transform: scaleX(-1);
/* margin: 0 50px; */
margin: 10px 0px 0px 10px;
box-sizing: border-box;
border-radius: 6px;
padding: 0;
box-shadow: rgba(156, 172, 172, 0.2) 0px 2px 2px, rgba(156, 172, 172, 0.2) 0px 4px 4px, rgba(156, 172, 172, 0.2) 0px 8px 8px, rgba(156, 172, 172, 0.2) 0px 16px 16px, rgba(156, 172, 172, 0.2) 0px 32px 32px, rgba(156, 172, 172, 0.2) 0px 64px 64px;
}
#canvas {
max-width: calc(50% - 100px);
background-color: rgb(250, 244, 250);
z-index: -1;
transform: scaleX(-1);
/* margin: 0 50px; */
margin: 10px 0px 0px 10px;
box-sizing: border-box;
border-radius: 6px;
width: 300px;
height: 300px;
padding: 0;
box-shadow: rgba(156, 172, 172, 0.2) 0px 2px 2px, rgba(156, 172, 172, 0.2) 0px 4px 4px, rgba(156, 172, 172, 0.2) 0px 8px 8px, rgba(156, 172, 172, 0.2) 0px 16px 16px, rgba(156, 172, 172, 0.2) 0px 32px 32px, rgba(156, 172, 172, 0.2) 0px 64px 64px;
}