-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (59 loc) · 1.02 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
body {
background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
height: 100%;
}
.col-md-6 {
border: 7px solid #111;
margin-top: 150px;
padding: 20px;
border-radius: 10px;
}
button{
margin: 20px;
border: 2px solid #111 !important;
}
h1{
font-weight: bolder;
margin: 20px;
}
.footer .footer-content{
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
footer{
padding: 20px 23px;
color: #111;
text-align: center;
}
.icons .fa{
color: #222;
margin: 0 13px;
cursor: pointer;
padding: 18px 0;
}
footer p a{
list-style: none;
display: inline-block;
padding: 8px 12px;
position: relative;
color: crimson;
text-decoration: none;
font-weight: bolder;
}
footer p a:hover{
color: crimson;
}
footer p a::after{
content: '';
width: 0%;
height: 2px;
background: #f44336;
display: block;
margin: auto;
transition: 0.5s;
}
footer a:hover::after{
width: 100%;
}