-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
62 lines (54 loc) · 964 Bytes
/
contact.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
.panel {
background-color: var(--gray);
padding: 30px 0;
border-radius: 15px;
margin: 0 2% 30px;
}
.panel h2 {
text-decoration: none;
padding: 0;
margin-bottom: 15px;
font-size: 30px;
}
.panel p {
text-align: justify;
padding-bottom: 10px;
}
.title {
display: flex;
justify-content: center;
}
.dot {
height: 12px;
width: 12px;
border-radius: 50%;
background-color: #0a0;
display: inline-block;
margin: 12px;
animation: dot ease-in-out;
animation-iteration-count: infinite;
animation-duration: 5s;
}
@keyframes dot {
0% {
box-shadow: none;
}
50% {
box-shadow: 0 0 3px 3px #0a0;
}
100% {
box-shadow: none;
}
}
/*Making it responsive*/
@media screen and (min-width:768px) {
.panel {
margin: auto 10%;
}
}
@media screen and (min-width:1280px) {
.panel {
margin: 0 auto;
width: 1020px;
}
}