-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
117 lines (95 loc) · 1.68 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
115
116
117
.body {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.body::before {
display: block;
content: '';
height: 60px;
}
.dropdown-item {
color: rgb(157, 32, 57);
}
.news-subscribe {
color: rgb(157, 32, 57);
}
.news-text {
color: rgb(157, 32, 57);
text-decoration: none;
}
.news-text:hover {
text-decoration: underline;
color: rgb(157, 32, 57);
}
.card {
position: absolute;
z-index: 1;
}
.showcase-img-container i {
opacity: 0
}
.showcase-img-container:hover img {
filter: brightness(50%);
transform: scale(1.07);
transition: 0.25s ease-in;
}
.showcase-img-container:hover i {
animation: fadeIn 0.5s ease-in;
opacity: 1;
cursor: pointer;
}
.footer-icons i {
font-size: 1.5rem;
}
.footer-phone {
text-decoration: none;
}
.footer-phone:hover {
border-bottom: 1px solid #ffffff;
}
.list-group-item {
background-color: transparent;
border: none;
}
.list-group-item:hover a {
border-bottom: 1px solid #ffffff;
transition: 0.25s ease-in-out;
}
.event-title {
color: #fff;
cursor: pointer;
}
.event-title:hover {
color:rgb(157, 32, 57);
transition: 0.25s ease-in-out;
}
.footer-brand {
font-size: 1rem;
letter-spacing: 0.25rem;
text-decoration: none;
}
.footer-brand:hover {
text-decoration: underline;
}
.college-header:hover {
filter: brightness(50%);
transition: 0.25s ease-in;
}
.college-link {
color:rgb(157, 32, 57);
text-decoration: none;
}
.college-link:hover {
color:rgb(157, 32, 57);
filter: brightness(40%);
text-decoration: underline;
}
@keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}