-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (57 loc) · 955 Bytes
/
style.css
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 {
font-family: 'Roboto', sans-serif;
background-color: whitesmoke;
color: dimgrey;
}
h1, h2 {
color: dimgrey;
}
a {
text-decoration: none;
}
.container {
margin: auto;
width: 50%;
}
.card {
margin-bottom: 20px;
text-align: center;
box-shadow: 5px 5px 12px lightgrey;
border-radius: 4px;
background-color: white;
padding: 20px 20px 30px 20px;
}
#top {
background-image: url("images/code-example.jpg");
}
#top > h1, #top > h2 {
color: white;
}
.img-circle {
border-radius: 50%;
box-shadow: 0px 0px 12px white;
max-width: 100%;
}
.social {
color: teal;
font-size: 50px;
text-align: center;
letter-spacing: 15px;
}
.social:hover {
color: black;
}
.button {
background-color: teal;
border-radius: 3px;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.button:hover {
background-color: black;
}