-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
131 lines (110 loc) · 2.32 KB
/
styles.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
body {
display: block;
text-align: center;
color: #454545;
background-color: #F8F8F7;
font-family: 'Nunito', sans-serif;
font-size: 1.5em;
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
margin-top: auto;
}
.topbar-container {
background-color: #ffffff;
box-shadow: rgba(0, 0, 0, 0) 1px 1px 0px 0px;
}
.topbar {
margin-left: 1em;
margin-right: 1em;
display: flex;
justify-content: space-between;
background-color: #ffffff;
align-items: baseline;
}
nav {
text-align: right;
}
.navItem {
color: #333;
margin-right: 10px;
text-decoration: none;
font-size: 0.8em;
transition: color .2s linear;
}
.navItem:hover {color: #ff5050;}
#profilePic {
border-radius: 50%;
margin-top: 20px;
margin-bottom: 20px;
filter: grayscale(100%);
height: 200px;
width: 200px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#contactLink {
text-decoration: none;
color: #333;
border-bottom: 1px dotted;
transition: color .2s linear;
}
#contactLink:hover {color: #ff5050;}
h1 {
margin: auto;
}
h2 {margin-top: auto;}
#aboutMe {
color: white;
text-shadow: 1px 1px 1px black;
margin-bottom: auto;
background-image: url("images/21101592188_f5da31c3f5_o.jpg");
overflow: auto;
background-attachment: fixed;
padding-top: 2em;
padding-bottom: 2em;
}
#aboutMeText {
max-width: 42rem;
margin-left: auto;
margin-right: auto;
}
#technologies {
padding-top: 10em;
padding-bottom: 10em;
margin-top: auto;
}
.cards-container {
margin-top: 5em;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.card {
box-shadow: 2px 6px 25px rgba(0, 0, 0, 0.1);
padding: 2.5em;
margin-bottom: 1em;
}
#contact {
padding-top: 10em;
padding-bottom: 10em;
margin-top: 0px;
}
#telefono {margin-top: auto;}
footer {
padding-top: 3em;
padding-bottom: 3em;
color: #666666;
background-color: #1a1a1a;
margin-left: 0px;
}
.linkImage {
width:32px;
height:32px;
border:0;
margin: 10px;
text-decoration: none !important;
}
a {text-decoration: none;}
.animated {
animation-duration: 10s;
}