-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (98 loc) · 1.88 KB
/
Copy pathstyles.css
File metadata and controls
114 lines (98 loc) · 1.88 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
margin: 0;
padding: 0;
font-family: 'Satoshi', sans-serif;
background-color: #0F172A;
color: #fff;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
}
.time-container {
font-size: 64px;
font-weight: bold;
}
#time {
display: flex;
align-items: center;
justify-content: center;
}
#date {
font-size: 20px;
font-weight: 400;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;
}
.search-container {
display: flex;
align-items: center;
/* background-color: #333; */
box-sizing: border-box;
border: 1px solid #4C5C80;
padding: 0.5rem;
border-radius: 0;
/* margin-bottom: 2rem; */
width: 935px;
}
#searchInput {
background-color: transparent;
border: none;
color: #9FB1C7;
outline: none;
font-size: 1rem;
padding: 0.5rem;
width: 764px;
}
.search-provider {
display: flex;
align-items: right;
/* background-color: #444; */
color: #9FB1C7;
padding: 0.5rem;
/* border-radius: 0.25rem; */
cursor: pointer;
font-family: 'Satoshi', sans-serif;
font-size: 1rem;
}
.arrow {
margin-left: 0.25rem;
}
.apps-section {
margin-top: 2rem;
}
.apps-title {
font-size: 20px;
font-weight: 400;
color: #fff;
margin-bottom: 1rem;
}
.app-container {
display: grid;
grid-template-columns: repeat(10, 1fr); /* 10 columns */
grid-gap: 37.3px;
}
.app-icon-container {
display: flex;
justify-content: center;
align-items: center;
background-color: #1B2A4C;
width: 60px;
height: 60px;
border-radius: 1px;
cursor: pointer;
}
.app-icon {
width: 24px;
height: 24px;
}
.app-icon:hover {
transform: scale(1.1);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}