-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathmain.css
More file actions
123 lines (107 loc) · 1.88 KB
/
main.css
File metadata and controls
123 lines (107 loc) · 1.88 KB
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
html{
scroll-behavior: smooth;
}
#portafolio #about #contact {
scroll-margin-top: 70px;
}
header{
width: 100%;
background-color: #2c3e50;
position: fixed;
top: 0;
color: white;
}
nav{
display: grid;
grid-template-columns: 1fr auto;
}
a {
color: white;
}
body {
margin-top: 8%;
font-family: "Montserrat", sans-serif;
font-family: "Lato", sans-serif;
*background-color: aqua;
}
.home_container {
background-color: #18bc9c;
display: flex;
align-items: center;
flex-direction: column;
color: white;
}
.title {
font-size: 70px;
}
.portafolio_container{
justify-content: center;
}
.portafolio_container__img{
align-content: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
padding: 0px;
row-gap: 2%;
column-gap: 2%;
}
.portafolio_container__img > img{
padding: 0px;
margin: 0px;
}
.portafolio_container > h1{
text-align: center;
font-size: 50px;
}
.fas fa-star{
height: 10px;
width: 10px;
}
.contact_container {
display: flex;
flex-direction: column;
align-items: center;
font-family: "Lato", sans-serif;
background: white;
}
.contact_container > h1 {
font-size: 40px;
*padding: 0px 0px 0px 0px;
margin: 30px 0px 10px 0px;
color: rgb(37, 37, 37);
}
.fa-star {
color: gray;
padding: 10px 0px 10px 0px;
}
.formContact {
display: flex;
flex-direction: column;
align-items: left;
font-family: "Montserrat", sans-serif;
}
.formContact > input,
.formContact > textarea {
padding: 20px 5px 10px 5px;
font-size: 15px;
border-top: none;
border-left: none;
border-right: none;
}
.formContact::placeholder {
color: gray;
}
.formContact > button {
font-family: "Lato", sans-serif;
color: white;
font-size: 15px;
font-weight: bold;
color: white;
background-color: #24ccbe;
border: none;
border-radius: 2px;
cursor: pointer;
height: 35px;
width: 55px;
margin: 20px 0px 0px 0px;
}