-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset.css
97 lines (97 loc) · 1.33 KB
/
reset.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
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Roboto', sans-serif;
font-size: 15px;
color: #545454;
//height: 3000px;
}
h1,p{
margin: 0;
}
a,a:hover,a:active,a:focus{
text-decoration: none;
outline: 0;
}
a,a:active{
color: #d35400;
}
a:hover{
color: #ff9955;
}
ul{
list-style: none;
}
.bold{
font-weight: 700;
}
.bolder{
font-weight: 900;
}
.left{
text-align: left;
}
.right{
text-align: right;
}
.center{
text-align: center;
}
.white{
color: #fff;
}
.primary{
color: #d35400;
}
.primary-bg{
background-color: #d35400;
}
.blue{
color: #3498db;
}
.blue-bg{
background-color: #3498db;
}
.green{
color: #27ae60;
}
.green-bg{
background-color: #27ae60;
}
.section-header{
padding:60px 0;
background-color: #27ae60;
color: #fff;
}
.cta{
padding: 10px 50px;
position: relative;
transition: 0.3s ease;
}
.cta:hover{
color: #fff;
background-color: #d35400;
}
.cta:after{
content:'';
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
border: 1px solid #d35400;
opacity: 1;
transition : transform 0.5s ease,opacity 0.7s ease;
}
.cta:hover:after{
transform: scale(1.2);
opacity: 0;
}
.transparent-bg{
background-color: rgba(0,0,0,0.6);
}
.space{
padding:60px 0;
}