-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
53 lines (51 loc) · 1.07 KB
/
styles.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
body{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.box{
width: 80%;
box-shadow: 6px 6px 30px rgba(50, 50, 50, 0.15);
border-radius: 30px;
padding: 20px 30px;
margin: 20px 0;
}
.box h3{
margin: 10px 0px;
font-size: 1.5rem;
}
.box:hover{
box-shadow: 6px 6px 30px rgba(50, 50, 50, 0.4);
}
.icons{
width:70px;
margin-left: -5px;
}
.clip{
clip-path: circle(40%);
}
h1{
line-height: 1.4;
font-size: 2.8rem;
}
a span{
background-color: rgba(0,0,0,0.7);
border-radius: 10px;
padding: 20px 20px;
}
.carousel-indicators{
justify-content: left!important;
z-index: 1!important;
margin:0!important;
margin-left: -8px !important;
position: relative!important;
top:-120px;
}
.view-inactive{
display: none;
}
@media screen and (max-width: 768px) {
.carousel-indicators a span{
margin-top: 130px!important;
}
}