-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorial.css
60 lines (52 loc) · 917 Bytes
/
tutorial.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
.TutorialPage {
background-image: url('/images/ocean.png');
background-size: cover;
background-repeat: no-repeat;
width: 100vw;
height: 100vh;
}
.tutorial-card {
background-color: #E9F7F6;
box-shadow: -1px 15px 30px -12px #73969D;
border-radius: 10px;
margin: 2.5%;
width: 90%;
padding: 2.5%;
font-size: 1vw;
}
.button {
padding: 10px;
font-size: .8vw;
margin: 15px;
width: fit-content;
border: none;
color: #E9F7F6;
background-color: #DD6950;
border-radius: 5px;
box-shadow: inset 0 0 0 0 #CDB29F;
transition: ease-out 0.3s;
}
.button:hover {
box-shadow: inset 130px 0 0 0 #CDB29F;
cursor: pointer;
}
.click {
display: flex;
align-items: center;
margin-bottom: 5%;
}
.click img {
border-radius: 10px;
margin-right: 5%;
}
.rod {
display: flex;
align-items: center;
}
.rod img {
border-radius: 10px;
margin-right: 5%;
}
p {
width: 40%;
}