-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
173 lines (159 loc) · 4.87 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
* {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
box-sizing: border-box;
}
body{
background-color: #000;
color:#fff;
}
.hero{
max-width: 100%;
height: 100vh;
background-image: url(img/back.jpg);
background-position: center;
background-size: cover;
background-attachment: fixed;
}
.hero .wrap{
background-image: url(img/logo.png);
background-position: 3% 60px;
background-repeat: no-repeat;
background-size: 200px;
padding: 60px 3%;
display: flex;
height: 100%;
flex-flow: row wrap;
justify-content: flex-start;
}
.hero .wrap .box{
flex-basis: 45%;
align-self: center;
}
.hero .wrap .box h1{
font-size: 65px;
margin: 0;
}
.hero .wrap .box p{
font-size: 26px;
line-height: 1.5;
margin-bottom: 0;
}
.hero .wrap .box .formulario{
flex: 50%;
display: flex;
margin-top: 30px;
}
/*
.hero .wrap .box .formulario form{
background-color: #fff;
padding: 10px;
}
*/
.hero .wrap .box .formulario button{
background-color: #fff;
padding: 10px;
padding: 12px 32px;
border: none;
font-size: 20px;
}
.hero .wrap .box .formulario button a{
color: #000;
text-decoration: none;
}
.hero .wrap .box input{
padding: 12px 32px;
border: none;
font-size: 20px;
}
.hero .wrap .box input[type="submit"] {
background-color: #000;
color: #fff;
}
.hero .wrap .box input:focus{
outline-style: none;
}
.hero .wrap a{
align-self: flex-end;
color: #fff;
}
.hero .wrap a i{
font-size: 60px;
}
.portfolio{
max-width: 100%;
}
.portfolio .wrap{
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.portfolio .wrap .column{
flex: 25%;
}
.portfolio .wrap .column img{
flex: 100%;
max-width: 100%;
}
footer{
padding: 30px;
text-align: center;
}
@media (max-width:1200px){
.hero{
background-image: url();
height: auto;
}
.hero .wrap{
justify-content: center;
padding: 60px 0 0;
background-position: center 60px;
}
.hero .wrap .box{
align-self: auto;
flex-basis: 100%;
padding: 60px 3%;
text-align: center;
}
.hero .wrap .box h1{
font-size: 40px;
}
.hero .wrap .box p{
font-size: 22px;
}
.hero .wrap .box .formulario button{
justify-content: center;
}
.hero .wrap .box .formulario button a{
justify-content: center;
}
/*
.hero .wrap a{
display: none;
}
*/
.material-icons{
display: none;
}
.column{
flex: 50% !important;
}
}
@media (max-width: 950px){
button,
form{
flex-direction: column;
}
button a,
form,
input{
text-align: center;
}
button,
input{
width: 100%;
}
.column{
flex: 100% !important;
}
}