-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
147 lines (119 loc) · 2.85 KB
/
stylesheet.css
File metadata and controls
147 lines (119 loc) · 2.85 KB
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
body{
background-color: rgba(58, 201, 201,0.1);
margin: 0px;
padding: 0px;
}
/* @@@@@@@@@@@@ nav related @@@@@@@@@@@@@@@@ */
.nav-container{
background-image: url(navimage.jpg);
height: 100vh;
background-size: cover;
background-repeat: no-repeat;
margin-bottom: 10%;
}
.nav-content{
padding: 20px;
max-width: 60%;
}
.nav-content-h1{
font-family: 'Tangerine', serif;
color: white;
font-size: 6.5em;
font-weight: 800;
text-shadow: 1px 1px 10px;
}
.nav-content-p{
color: white;
font-size: 2.5em;
font-family: 'Inconsolata', monospace;
font-weight: 800;
text-shadow: 0px 0px 5px red;
padding-left: 50px;
}
@media screen and (max-width: 840px) {
.nav-content{
padding: 20px;
max-width: 100%;
}
}
/* @@@@@@@@@@@@@@@@@@@@@@@ branch cards styling @@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
.main-b-container{
width: 80%;
margin: 0px auto;
}
.b-container{
margin: 10px 10px;
}
.b-container1,.b-container2,.b-container3,.b-container4,.b-container5,.b-container6{
height:350px;
width: 50vw;
background-size: cover;
border-radius: 10px;
transition: transform .3s;
}
.b-container1{
background-image: url(ece1.jpg);
}
.b-container1:hover,.b-container2:hover,.b-container3:hover,.b-container4:hover,.b-container5:hover,.b-container6:hover{
transform: scale(1.02);
text-shadow: 1px 1px 10px;
box-shadow: 0px 0px 20px;
}
.b-container2{
background-image: url(civil1.jpg);
}
.b-container3{
background-image: url(eee.jpg);
}
.b-container4{
background-image: url(bme.jpg);
}
.b-container5{
background-image: url(cse.jpg);
}
.b-container6{
background-image: url(mech.jpg);
}
.content-container{
background-color: white;
padding: 5px;
border-radius: 10px 10px 0px 0px;
border-style: solid;
border-color: black;
border-width: 0px 0px 3px 0px;
text-align: center;
}
.content-container p{
font-weight: 700;
}
.content-container h1{
color: rgba(130, 185, 212);
}
@media screen and (max-width: 750px) {
.main-b-container{
display: flex;
flex-wrap: wrap;
}
.b-container1,.b-container2,.b-container3,.b-container4,.b-container5,.b-container6{
height: 350px;
width: 400px;
background-size: contain;
border-radius: 10px;
transition: transform .3s;
}
}
/* ############### Footer styling ############## */
.main-container{
background-image: url(footer.jpg);
height: 10vh;
width: 100wh;
background-size: cover;
}
.f-content-p,.f-content-p a,.f-content-h5{
color: rgb(240, 240, 240);
text-decoration: none;
}
a:hover{
color:rgba(58, 201, 201,0.1);
text-shadow: 0px 0px 5px red;
}