-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (49 loc) · 1.07 KB
/
Copy pathstyle.css
File metadata and controls
53 lines (49 loc) · 1.07 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
/******************************************
/* CSS
/*******************************************/
/* Box Model Hack */
*{
box-sizing: border-box;
}
/******************************************
/* LAYOUT
/*******************************************/
body {
font-family: system-ui;
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
margin: 2rem;
}
button {
padding: 0.6rem 1rem;
font-size: 1.1rem;
}
#jobs {
width: 100%;
max-width: 600px;
display: flex;
flex-direction: column;
gap: 1rem;
}
.job-card {
border: 1px solid #ccc;
border-radius: 8px;
padding: 1rem;
}
.job-card h3 {
margin: 0 0 0.5rem;
}
.job-card p {
margin: 0.3rem 0;
font-size: 0.95rem;
}
.job-card a {
color: #0066cc;
text-decoration: none;
font-weight: bold;
}
/******************************************
/* ADDITIONAL STYLES
/*******************************************/