-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
132 lines (112 loc) Β· 1.9 KB
/
Copy pathstyle.css
File metadata and controls
132 lines (112 loc) Β· 1.9 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: #f5f5f5;
}
/* HEADER */
.top-header {
display: flex;
justify-content: space-between;
padding: 10px 20px;
background: white;
border-bottom: 3px solid black;
}
.bookmark {
background: #ffeb3b;
padding: 6px 12px;
border: 2px solid black;
font-weight: bold;
}
.logo {
font-family: 'Press Start 2P', cursive;
font-size: 12px;
}
/* TICKER */
.ticker {
background: #ffc107;
border-top: 2px solid black;
border-bottom: 2px solid black;
overflow: hidden;
white-space: nowrap;
}
.ticker-text {
display: inline-block;
padding: 10px;
animation: scroll 12s linear infinite;
font-family: 'Press Start 2P', cursive;
font-size: 12px;
}
@keyframes scroll {
from { transform: translateX(100%); }
to { transform: translateX(-100%); }
}
/* CONTAINER */
.container {
max-width: 900px;
margin: auto;
padding: 20px;
}
/* TITLE */
h1 {
font-family: 'Anton', sans-serif;
font-size: 40px;
}
p {
font-family: 'Pacifico', cursive;
color: #444;
}
/* SEARCH */
.search-box {
display: flex;
margin: 20px 0;
}
input {
flex: 1;
padding: 12px;
border: 2px solid black;
}
button {
padding: 12px;
background: black;
color: white;
border: none;
cursor: pointer;
}
/* GRID */
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
/* CARDS */
.card {
background: white;
border: 2px solid black;
padding: 15px;
box-shadow: 4px 4px 0px black;
}
.card:hover {
transform: translateY(-3px);
}
.card h3 {
font-weight: 600;
}
/* IMAGE */
img {
width: 80px;
border-radius: 50%;
}
/* PROGRESS */
.bar {
height: 10px;
background: #ddd;
}
#progress {
height: 10px;
background: #4caf50;
}
/* ROAST */
#roast {
color: red;
font-weight: bold;
}