-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
167 lines (151 loc) · 2.9 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');
html, body{
height: 100%;
width: 100%;
font-family: 'Poppins', sans-serif;
color:#222;
overflow:auto;
scroll-behavior: smooth;
}
.navbar{
background-color: #9900cc;
}
.navbar img{
height:auto;
width:auto;
max-height: 75px;
}
.nav-linkage{
color:white;
padding:10px;
font-size: 1.1em !important;
}
.nav-linkage:hover{
color:black;
}
.circular--square{
border-radius:50%;
width:28% !important;
}
.carousel-inner img{
height: 100%;
width: 100%;
}
.carousel-caption{
position:absolute;
top:50%;
transform: translateY(-50%);
}
.carousel-caption h2{
font-size:450%;
text-shadow: 1px 1px 15px #000;
}
.carousel-caption h3{
font-size:95%;
}
.padding{
padding-bottom: 2rem;
}
.welcome hr{
border-top: 2px solid #b4b4b4;
width:95%;
margin-top: .3rem;
margin-bottom: 1rem;
}
.fa-code, .fa-bold, .fa-css3, .fa-cogs{
font-size: 4em;
margin: 1rem;
}
.social a{
font-size: 4.5em;
padding:3rem;
}
footer{
background-color: #660066;
color:white;
padding-top:2rem;
}
hr.light{
border-top:1px solid #d5d5d5;
width:75%;
}
/*---Media Queries --*/
@media (max-width: 992px) {
.social a{
font-size:4em;
padding:2rem;
}
}
@media (max-width: 768px) {
.circular--square{
width:23% !important;
}
.carousel-inner img{
width:100%;
height:auto;
}
.carousel-caption{
top:40%;
}
.carousel-caption h2{
font-size:325% ;
}
.carousel-caption h3{
font-size: 87%;
}
.carousel-caption btn{
font-size:83%;
padding: 8px 14px;
}
.display-4{
font-size:200%;
}
.social a{
font-size:2.5rem;
padding:1.2rem;
}
}
@media (max-width: 576px) {
.circular--square{
width:17% !important;
}
.carousel-inner img{
width:100%;
height:auto;
}
.carousel-caption{
top:37%;
}
.carousel-caption h2{
font-size: 240%;
}
.carousel-caption h3{
font-size: 68%;
}
.carousel-caption btn{
font-size:63%;
padding:4px 8px;
}
.carousel-indicators{
display:none;
}
.display-4{
font-size:160%;
}
.social a{
font-size:2rem;
padding:.7rem;
}
}
/*---Firefox Bug Fix --*/
.carousel-item {
transition: -webkit-transform 0.5s ease;
transition: transform 0.5s ease;
transition: transform 0.5s ease, -webkit-transform 0.5s ease;
-webkit-backface-visibility: visible;
backface-visibility: visible;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
padding: 1rem;
}