-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCCC.css
More file actions
82 lines (71 loc) · 1.12 KB
/
CCC.css
File metadata and controls
82 lines (71 loc) · 1.12 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
* {
font-family: "Helvetica Neue", Arial, sans-serif;
font-size: medium;
}
:root {
--primary: #2c3e50;
--secondary: #161f29;
}
body {
line-height: 1.6;
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
img {
position: absolute;
top: 2rem;
right: 2rem;
width: 120px;
height: 120px;
object-fit: cover;
border-radius: 50%;
border: 2px solid white;
}
a:hover {
color: red;
font-weight: bold;
}
a:focus {
color: var(--primary);
font-weight: bold;
}
h1 {
text-transform: uppercase;
color: var(--primary);
font-size: 2em;
font-weight: 700;
}
h4 {
color: var(--secondary);
font-size: 1.2em;
font-weight: 600;
}
li {
color: var(--secondary);
font-size: 1.2em;
font-weight: 600;
}
p {
color: var(--secondary);
font-size: 1.2em;
font-weight: 600;
}
ul {
list-style-type: Square;
}
#Container {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
gap: 50px;
padding: 10px;
max-width: 800px;
}
@media (max-width: 600px) {
#Container {
flex-direction: column;
align-items: stretch;
}
}