-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaster.css
More file actions
58 lines (50 loc) · 887 Bytes
/
master.css
File metadata and controls
58 lines (50 loc) · 887 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
h1 {
font-size: 36px;
font-style: normal;
font-variant: normal;
font-weight: 500;
line-height: 26.4px;
}
h3 {
font-size: 14px;
font-style: normal;
font-variant: normal;
font-weight: bold;
line-height: 15.4px;
}
a {
color: #005691;
text-decoration: none;
}
a:hover {
color: #23527c;
text-decoration: underline;
}
#titleText {
color: black;
text-decoration: none;
}
#titleText:hover {
color: black;
text-decoration: none;
}
#viewButton {
background-color: #b90276;
display: block;
margin: auto;
border: 3px solid #b90276;
color: white;
padding: 15px 32px;
text-align: center;
font-size: 16px;
border-radius: 4px;
transition-duration: 0.4s;
text-decoration: none;
cursor: pointer;
width: 150px;
font-weight: 500;
}
#viewButton:hover {
background-color: white;
color: black;
}