-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
166 lines (135 loc) · 2.65 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
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
color: #a09038;
}
ul {
list-style: none;
font-style: italic;
}
a {
text-decoration: none;
font-weight: 700;
}
body {
background-image: url(./imgs/pexels-alex-conchillos-3648850.jpg);
background-repeat: no-repeat;
background-position: center center fixed;
background-size: cover;
}
header {
display: flex;
height: 100px;
justify-content: space-around;
align-items: center;
padding: 10px;
margin-bottom: 45px;
/*border-bottom: 2px solid #FFF;*/
/*box-shadow: 1px 1px 10px 1px #FFF;*/
/*border-bottom: 15px ridge #FFF;*/
}
header ul {
display: flex;
}
header ul li {
padding: 5px;
/*border-right: 2px dashed #FFF;*/
}
header ul li a {
transition: 300ms;
}
header ul li a:hover {
color: #c0a717;
text-decoration: underline;
}
/*header ul li:first-child() {
padding: 5px;
border-left: 2px dashed #FFF;
}*/
.container {
text-align: center;
}
.container .nome h1 {
font-size: 60px;
}
.container .nome h5 {
font-size: 25px;
}
#arrow {
font-size: 35px;
cursor: pointer;
animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
#animation {
transition: 300ms;
}
.rotate {
transform: rotate(180deg);
transition: 300ms;
}
.active {
display: block !important;
}
#about p {
max-width: 600px;
margin: 0 auto;
}
.form {
width: 40%;
margin: 0 auto;
margin-top: 30px;
/*border: thick double #FFF;
padding: 25px;*/
}
.form input {
width: 50%;
padding: 5px 10px;
border: none;
border-radius: 5px 0px 0px 5px;
}
.form button {
width: 15%;
padding: 5px 10px;
background: linear-gradient(to right, #c0a717 50%, #9c551b 50%);
background-size: 200% 100%;
background-position: right bottom;
color: #FFF;
font-weight: 600;
border: none;
cursor: pointer;
transition: all 300ms ease-out;
border-radius: 0px 5px 5px 0px;
margin-top: 20px;
margin-left: -5px;
}
.form button:hover {
background-position: left bottom;
color: #FFF;
}
/*--------------------RESPONSIVIDADE-------------------*/
/*--------------------Ipad----------------------*/
@media only screen and (max-width: 768px) {
.form {
width: 100%;
}
}
/*-------------------MOBILE--------------------*/
@media only screen and (max-width: 480px) {
.container .nome h1 {
font-size: 30px;
}
.container .nome h5 {
font-size: 15px;
}
#about p {
max-width: 80%;
text-align: justify;
}
}