-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
132 lines (119 loc) · 2.44 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
body{
font-family: proxima-nova,Lato,'Lucida Sans Unicode','Lucida Grande',sans-serif;
}
.ado {
background-image: linear-gradient(to right, rgb(0 0 0 / 82%), rgb(30 6 119 / 18%)), url(img/222.png);
background-position: center;
background-size: cover;
height: 540px;
}
.ado h1 {
font-size: 50px;
position: relative;
top: 55%;
}
.ado p {
position: relative;
top: 55%;
}
.ado button{
position: relative;
top: 55%;
}
.navbar {
justify-content: space-around;
}
.navbar li {
margin-left: 20px;
}
.logo-text {
text-decoration: none;
color: #009688;
font-size: 20px;
}
.navbar span {
text-decoration: none;
color: #040404;
border: 1px solid #009688;
padding: 4px;
}
.fakeimg {
background-color: #bdbdbd5e;
}
.fakeimg img {
height: 300px;
width: 300px;
border-radius: 50%;
border: 2px solid #040404;
margin: 4px;
}
.img-responsive {
height: 300px;
padding: 4px;
margin-bottom: 2px;
transition: all ease .5s;
}
.img-responsive:hover {
opacity: .9;
transform: scale(1.05);
}
.thumbnail-container {
position: relative;
display: inline-block;
}
.hide {
display: none;
position: absolute;
bottom: 1%;
left: 4%;
text-align: center;
margin: 10px;
color: #fff;
}
.thumbnail-container:hover .hide {
display: block;
}
hr {
width: 85% !important;
margin: auto;
margin-top: 4px;
}
.footer-end a{
text-decoration: none;
font-size: 10px ;
color: #009688;
font-weight: 500;
}
.footer-end{
font-size: 10px ;
}
.img-about {
height: 400px;
width: 100%;
}
.card i{
font-size: 50px;
text-align: center;
padding: 10px;
}
.card {
text-align: center;
padding: 10px;
}
.container {
position: relative;
min-height: 4em; /* Set a minimum height for the container */
}
#dynamicH1 {
cursor: pointer;
overflow: hidden;
white-space: nowrap;
display: inline-block;
border-right: 2px solid #fff; /* Add a border to simulate a typing cursor */
min-height: 1.2em; /* Set a minimum height to reserve space for changing text */
height: 1.2em; /* Set a fixed height for the h1 element */
line-height: 1.2em; /* Maintain proper spacing with line-height */
}
body.no-scroll {
overflow: hidden;
}