forked from IEEE-Computer-Society-UPES/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (85 loc) · 1.85 KB
/
Copy pathstyle.css
File metadata and controls
109 lines (85 loc) · 1.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
body {}
nav {
background-color: black;
font-weight: 500;
color: white;
}
.nav-item {
padding-left: 15px;
padding-right: 15px;
}
nav li a {
color: white !important;
}
.active {
color: aqua !important;
font-weight: bold;
}
/* li:hover {
background-color: cyan;
} */
/* .navbar-nav>.active>a {
background-color: aqua;
}
li:hover {
background-color: aqua;
} */
.team_row {
height: 5vh;
}
.about_content p {
font-size: large;
}
.contact_form {
background: rgba( 255, 255, 255, 0.1);
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37);
backdrop-filter: blur( 8.5px);
-webkit-backdrop-filter: blur( 8.5px);
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18);
}
.contact_form_innerFields {
background-color: unset;
}
.glass {
background: rgb(239 227 227 / 50%);
box-shadow: 0 8px 32px 0 rgb(76 83 178 / 37%);
backdrop-filter: blur( 20px);
-webkit-backdrop-filter: blur( 20px);
border-radius: 10px;
border: 1px solid rgba( 255, 255, 255, 0.18);
}
:root {
--animate-duration: 1000ms;
}
/* Buttons CSS Starts */
.buttons {
margin: 10%;
text-align: center;
}
.btn-hover {
font-size: 16px;
font-weight: 600;
color: #ffffff;
cursor: pointer;
text-align: center;
border: none;
background-size: 300% 100%;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.btn-hover:hover {
background-position: 100% 0;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.btn-hover:focus {
outline: none;
}
.btn-hover.color-1 {
background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
}
/* Buttons CSS Ends */