forked from GlasgowCoderCollective/resources
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (41 loc) · 735 Bytes
/
style.css
File metadata and controls
48 lines (41 loc) · 735 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
body {
font-family: 'Source Sans Pro', sans-serif;
/*color: white;*/
}
h1,h3 {
margin: 1.25rem;
margin-left: 20px;
}
header>a{
text-decoration: none;
color:black;
}
a {
color: white;
text-decoration: none;
}
.links{
padding: 0.625rem;
padding-left: 15px;
margin: 1.25rem;
font-size: 20px;
background-color: rgb(32, 178, 170);
box-shadow: 1px 1px 3px #888888;
transition: transform .2s; /* Anim */
}
.links p {
margin-left:0.5em;
}
.links p a {
margin-left:-0.5em;
font-weight:bold;
}
.links p a.recommended {
font-weight:normal;
margin-left:0;
font-style: italic;
}
.links a:hover {
text-decoration: underline;
transform: scale(1.01); /* Zoom effect */
}