-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (57 loc) · 1017 Bytes
/
Copy pathstyles.css
File metadata and controls
68 lines (57 loc) · 1017 Bytes
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
body {
background-color: rgb(243, 234, 245);
}
header {
text-align:center;
border: 4px double black;
font-size: 30pt;
font-weight: bold;
margin: 20px 40px;
}
.articles {
width: 70%;
margin: 0px auto;
position: absolute;
}
.about {
background: rgb(206, 217, 0);
border: 1px solid black;
border-radius: 20px;
padding: 10px;
margin: 10px;
}
.experience {
background: rgb(206, 217, 0);
border: 1px solid black;
border-radius: 20px;
padding: 10px;
margin: 10px;
}
.contacts {
background: rgb(206, 217, 0);
border: 1px solid black;
border-radius: 20px;
padding: 10px;
margin: 10px;
}
.about > .header > .title {
font-size: 18pt;
font-weight: bold;
}
.experience > .header > .title {
font-size: 18pt;
font-weight: bold;
}
.contacts > .header > .title {
font-size: 18pt;
font-weight: bold;
}
.contacts > .header > .title:hover {
color: red;
}
.experience > .header > .title:hover {
color: white;
}
.about > .header > .title:hover {
color: green;
}