-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (74 loc) · 1.35 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (74 loc) · 1.35 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
* {
padding: 0;
margin: 0;
font-family: 'Open Sans', sans-serif;
}
header {
width: 100%;
height: 100%;
background-color: rgba(182, 182, 35, 0.123);
padding: 35vh 0;
}
.plx {
text-align: center;
}
.plx h1 {
font-weight: 400;
letter-spacing: 2.4px;
padding: 0 0 13.3px 0;
}
.plx p {
padding: 0 0 16px 0;
}
.plx small {
padding: 8px 10px 8px 10px;
background-color: white;
border-radius: 2.4px;
color: #424242;
transition: 0.32s;
}
.plx small:hover {
box-shadow: 2px 2.4px;
}
section {
height: 75vh;
}
h1.title {
font-size: 6.6vh;
color: #424242;
padding-bottom: 40px;
}
ul {
font-size: 3.4vh;
list-style-type: none;
padding-left: 10vh;
}
li{
padding: 0px 14px;
}
a {
text-decoration: none;
}
a:hover {
color: rgb(36, 23, 66);
}
.container {
padding: 8vh 20vh 0 20vh;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 80px;
box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}