-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (90 loc) · 1.74 KB
/
styles.css
File metadata and controls
111 lines (90 loc) · 1.74 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
/* Card Container */
.card-container {
border-radius: 0.7rem;
/* rounded-xl */
width: 100%;
height: 100%;
}
/* Base Card Styles */
.landing-card {
border-radius: 0.7rem;
/* rounded-lg */
padding: 1.4rem;
/* p-6 */
width: 100%;
height: 100%;
transition: background-color 0.1s ease;
cursor: pointer;
}
/* Card Content Layout */
.card-content {
display: flex;
flex-direction: column;
height: 100%;
}
/* Card Header */
.card-header {
margin-bottom: 1.4rem;
/* mb-8 */
}
/* Card Text Container */
.card-text {
font-weight: 400;
/* font-normal */
/* text-base */
color: white;
}
/* Card Title */
.card-title {
font-weight: 700;
/* font-bold */
font-size: 1.125rem;
/* text-lg */
display: block;
margin-bottom: 0.25rem;
/* mb-1 */
}
/* Card Description */
.card-description {
font-weight: 500;
/* font-normal */
opacity: 0.7;
}
/* Card Footer */
.card-footer {
margin-top: auto;
/* mt-auto */
}
/* Card Variants */
.card-primary {
background-color: #E65532;
}
.card-primary:hover {
background-color: #F06B48;
}
.card-secondary {
background-color: #1A1A1A;
}
.card-secondary:hover {
background-color: #333333;
}
.card-tertiary {
background-color: #228B22;
}
.card-tertiary:hover {
background-color: #2AAD29;
}
.grid {
row-gap: 1rem;
}
#navigation-items {
width: max-content;
}
/* styles.css */
/* =========================================
Use-Case tiles (inside the wrapper)
========================================= */
.usecase-cards .card { /* base */
border: 1px solid #9CA3AF; /* light gray outline */
transition: border-color .12s, box-shadow .12s;
}