-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
114 lines (89 loc) · 1.72 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*ALL*/
p{
color: #1c1c1c;
}
h1{
/*font-size: 72px;*/
background: -webkit-linear-gradient(#f00, #174ae9);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h3{
color: black;
}
.btn-default{
background: linear-gradient(0.38turn, rgb(255 0 0), rgb(35 70 220)) no-repeat center center;
}
.btn-default:hover{
background: linear-gradient(0.38turn, rgb(122 2 2), rgb(17 42 151)) no-repeat center center;
}
img:hover {
transform: translate(0, -5px);
transform: translate3d(0, -5px, 0);
}
img{
transform: translate3d(0, 0, 0);
transition: transform 0.2s ease-out;
will-change: transform;
}
/*SLIDEBAR*/
.nav {
display: unset;
}
.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
color: #ffb300;
background-color: #27272c;
}
/*HEADER*/
.jumbotron{
background: linear-gradient(rgb(254 249 0), rgb(254 89 0)) no-repeat center center fixed;
color: black;
}
.jumbotron h1{
background: unset;
-webkit-background-clip: unset;
-webkit-text-fill-color: unset;
color: black;
}
.jumbotron hr {
width: 80%;
margin: 5px auto;
border-color: #000000;
}
/*about*/
.well {
background-color: unset;
border-radius: unset;
box-shadow: unset;
}
#about2 .well img{
display: none;
}
@media (max-width: 991px){
#about2 .col-md-4 {
display: none;
}
}
@media (min-width: 992px){
#about2 .well img{
display: initial;
}
}
/*FOOTER*/
footer {
background-color: #262626;
border-top: 10px solid;
border-color: #ffa600;
padding: 20px 0 40px;
}
footer span{
text-align: center;
}
footer img {
width: 70px;
}
footer a:hover{
color: white;
}