-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (89 loc) · 1.86 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
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
--transition_1: all 0.3s;
--description-color: #10182899;
--point-blue: #1570ef;
--nearly-grey: #eeeeee;
}
body {
margin: 0;
display: flex;
}
#app-preview {
display: flex;
flex-direction: column;
}
#app-preview-container {
display: flex;
align-items: center;
flex-direction: column;
margin: 50px;
}
.preview-content {
display: flex;
}
.app-item {
display: flex;
flex-direction: column;
padding: 24px;
cursor: pointer;
webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.app-item span {
color: #0c231f99;
}
.selected-app-item {
transition: var(--transition_1);
border-left: 4px solid #0c231f;
background-color: #e1ffa07a;
}
.unselected-app-item {
transition: var(--transition_1);
border-left: 4px solid var(--nearly-grey);
}
.app-item-preview {
background-color: var(--nearly-grey);
margin: 100px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 20px;
padding: 40px;
width: 400px;
height: 200px;
}
@keyframes apear {
from {
transform: translateX(-5px);
}
to {
transform: translateX(0);
}
}
.app-item-preview img {
width: 80%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
border-radius: 10px;
animation: apear 0.3s ease;
}
.unselected-app-item-preview {
transition: var(--transition_1);
display: none;
}
.selected-app-item-preview {
transition: var(--transition_1);
display: inline-block;
}
.description {
color: var(--description-color);
font-family: "Manrope", sans-serif;
}
h1 {
font-size: 60px;
font-family: "Manrope", sans-serif;
}