-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
139 lines (115 loc) · 1.98 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* general */
body {
background: #fffef4;
color: #141414;
font-family: 'Open Sans', sans-serif;
text-align: center;
}
h1, h2, h3 {
font-family: 'Oswald', sans-serif;
font-weight: lighter;
text-transform: uppercase;
}
a {
text-decoration: none;
text-transform: uppercase;
font-family: 'Oswald', sans-serif;
color: white;
}
/* container */
.container {
width: 800px;
margin: 40px auto;
}
/* card */
.card {
background: #f7f7f7;
margin: 30px;
border: 1px solid #dadada;
border-radius: 3px;
box-shadow: 3px 3px 10px #c3c3c3;
}
/* resume card */
/* dzz */
#profile-logo {
border-radius: 75px;
width: 125px;
height: 125px;
}
#mountains {
width: 100%;
}
.btn-card {
background: #313131;
margin: 30px auto 30px auto;
padding: 15px;
width: 200px;
border-radius: 5px;
transition: all 0.3s ease-out;
}
.btn-card:hover {
background: #fdc33e;
}
/* hobbies card */
.hobby {
width: 150px;
margin: 0px 30px 30px 30px;
display: inline-block;
border: 1px solid #eaeaea;
border-radius: 3px;
box-shadow: 7px 7px 10px #e0e0e0;
padding-bottom: 20px;
transition: all 0.3s ease-out;
}
.hobby h4 {
text-transform: uppercase;
font-weight: normal;
}
.hobby:hover {
background: #313131;
color: white;
}
.hobby img {
width: 100px;
height: 100px;
}
/* social network card */
.card h3 {
font-size: 25px;
}
ul {
margin: 30px;
padding: 0;
list-style-type: none;
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
}
ul i {
font-size: 75px;
color: #fdc33e;
transition: all 0.3s ease-out;
}
ul i:hover {
font-size: 77px;
color: #313131;
}
/* responsive */
@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;
}
}