-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (104 loc) · 2.03 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
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
body {
/*border-top: 5px solid #24C3C6;*/
border-top: 5px solid darkred;
/*background-color: #ECECEA;*/
background-color: white;
/*background-color: #fc4445;*/
}
.row{
margin-bottom: 0px;
}
.center{
text-align: center;
}
.ih-item.square.effect6 .info p {
font-size: 28px;
}
@font-face {
font-family: summit;
src: url(SummitMedium-Inline.ttf);
font-weight: bold;
}
@font-face {
font-family: summitTxt;
src: url(SummitLight-Solid.otf);
font-weight: bold;
}
.name{
font: normal normal normal 150px/1.4em summit,serif;
/*color: #302D2D;*/
color: #2B2C30;
}
.txt {
font: normal normal normal 23px/1.4em summitTxt,sans-serif;
}
.imgWrap {
position: relative;
visibility: visible;
padding-bottom: 10px;
}
.imgDescription {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.91);
font: normal normal normal 23px/1.4em basic,sans-serif;
padding-top: 170px;
visibility: hidden;
opacity: 0;
transition: opacity .5s ease-in-out;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
}
.imgWrap:hover .imgDescription {
visibility: visible;
opacity: 1;
}
#linkLogos{
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.links:hover{
opacity: 0.7;
transition: opacity .5s ease-in-out;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
}
.details {
margin: 9px auto 0;
background: #578FFE;
padding: 9px 0;
border-radius: 5px;
color: white;
}
.details a {
color: #fff;
text-decoration: none;
display: block;
font-size: 20px;
font-weight: 700;
letter-spacing: 0;
text-transform: uppercase;
}
#social {
font-size: 0;
margin-top: 24px;
}
#social a {
color: #578FFE;
font-size: 24px;
text-decoration: none;
}
.fa{
font-size: 3em;
padding: 10px;
}
.paddingBottom{
padding-bottom: 50px;
}
.paddingTop{
padding-top:30px;
}