-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomestyle.css
98 lines (92 loc) · 1.69 KB
/
homestyle.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
body{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.header{
padding: 5px;
text-align: center;
background: #1abc9c;
color: white;
font-size: 25px;
font-weight: bold;
padding-left: 10px;
}
.heading{
text-align: center;
font: bold;
}
#footer > p{
padding: 10px;
text-align: right;
background: #99f3d5;
color: purple;
font-size: 15px;
}
.title{
text-align: left;
color:white;
margin: none;
padding: none;
}
.htmlcard1{
color: black;
text-align: center;
}
.csscard1{
color: black;
text-align: center;
}
.jscard1{
color: black;
text-align: center;
}
/* From cssbuttons.io by @alexmaracinaru */
.cta {
position: relative;
margin: auto;
padding: 12px 18px;
transition: all 0.2s ease;
border: none;
background: none;
}
.cta:before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
border-radius: 50px;
/* background: #b1dae7; */
width: 45px;
height: 45px;
transition: all 0.3s ease;
}
.cta span {
position: relative;
font-family: "Ubuntu", sans-serif;
font-size: 18px;
font-weight: 700;
letter-spacing: 0.05em;
color: #234567;
}
.cta svg {
position: relative;
top: 0;
margin-left: 10px;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
stroke: #234567;
stroke-width: 2;
transform: translateX(-5px);
transition: all 0.3s ease;
}
.cta:hover:before {
width: 100%;
background: #b1dae7;
}
.cta:hover svg {
transform: translateX(0);
}
.cta:active {
transform: scale(0.95);
}