-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (83 loc) · 1.38 KB
/
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
@charset "UTF-8";
/* CSS Document */
* { margin: 0; padding: 0; }
body {
background-color: #ececec;
font-family: 'Work Sans', sans-serif;
color: rgb(255, 255, 255);
font-size: 24px;
font-weight: lighter;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: bold;
}
h2 {
font-size: 16px;
}
.container {
text-align: center;
width: 700px;
margin: 40px auto;
}
.card {
background-color: #222831;
margin: 60px;
padding: 50px;
box-shadow: 3px 4px 5px grey;
border-radius: 4px;
border: 1px solid lightgrey;
text-align: center;
}
.img-circle {
border-radius: 50%;
margin: 25px;
}
a:hover {
text-decoration: none;
color: white;
}
#profile {
margin: 20px 0px;
}
#portfolio {
margin: 20px 0px;
}
#contact {
margin: 20px 0px;
}
.btn-silver {
color: #999999;
border: 1px solid #999999;
padding: 10px 15px;
border-radius: 50px;
font-weight: lighter;
opacity: 0.8;
text-decoration: none;
}
.inline {
display: inline;
}
i {
font-size: 50px;
color: rgb(230, 230, 230);
padding: 24px;
}