-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
161 lines (134 loc) · 2.26 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
body {
background-color: rgb(21, 19, 22);
color: white;
}
header {
display: flex;
justify-content: space-around;
align-items: center;
padding: 14px;
border-bottom: 1px solid #CA3A20;
margin-bottom: 35px;
}
header ul {
display: flex;
}
header ul li {
padding: 7px;
}
header a {
transition: 800ms;
}
header a:hover {
color: #CA3A20;
}
img {
height: 60px;
}
ul {
list-style: none;
font-size: 14px;
font-weight: 700;
}
a {
text-decoration: none;
color: white;
font-weight: 200;
}
.container {
text-align: center;
padding: 89px;
}
.container .name h1 {
font-size: 60px;
margin: 10px;
}
.container .name h5 {
font-size: 18px;
font-weight: 200;
margin: 8px;
}
#arrow {
font-size: 30px;
cursor: pointer;
color: #CA3A20;
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 {
width: 600px;
margin: 0 auto;
font-weight: 200;
padding: 7px;
}
.form {
width: 40%;
margin: 0 auto;
margin-top: 30px;
}
.form input {
width: 50%;
padding: 5px 10px;
background-color: white;
text-align: center;
border: none;
border-radius: 5px 0px 0px 5px;
}
.form button {
width: 15%;
padding: 5px 10px;
background: linear-gradient(to right, #E05419 50%, #CA3A20 50%);
background-size: 200% 100%;
background-position: right bottom;
color: white;
font-weight: 400;
border: none;
cursor: pointer;
transition: all 300ms ease-out;
border-radius: 0px 5px 5px 0px;
margin-left: -5px;
}
.form button:hover {
background-position: left bottom;
color: white;
}
.form p {
padding: 16px;
}
@media (max-width: 768px) {
.form {
width: 100%;
}
}
@media (max-width: 480px) {
.container .name h1 {
font-size: 25px;
}
.container .name h5 {
font-size: 10px;
}
#about p {
max-width: 100%;
text-align: justify;
}
}