-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathese.css
114 lines (97 loc) · 1.99 KB
/
ese.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
font-variation-settings: 'wght' 400;
font-size: 16px;
background: rgb(2,0,36);
background: linear-gradient(to right, #540054, #bf4193);
color: white;
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24
}
#container {
background: rgb(2,0,36);
background: linear-gradient(to right, #540054, #bf4193);
height: 100vh;
z-index: 1;
}
nav > .container {
background-color: rgb(2,0,36, 0.1);
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.navbar {
background: linear-gradient(to right, #540054, #bf4193);
top: 50%;
left: 0;
position: fixed !important;
z-index: 999;
transform: translateY(-50%);
}
.navbar-nav .nav-item .nav-link.active {
color: #003772;
font-size: large;
text-decoration: underline;
}
#navbarNav {
justify-content: center;
}
#navbarNav > ul {
justify-content: space-evenly;
width: 100%;
}
#firstRow {
margin-top: 2%;
background: linear-gradient(to right, #540054, #bf4193);
color:white;
height: 270px;
padding: 10px !important;
}
.linksHead a {
text-decoration: none;
}
.expand {
cursor: pointer;
}
.bigRow {
max-height: 1000px;
overflow: hidden;
padding: 10px !important;
transition: all 0.3s ease;
}
.smallRow {
margin-bottom: 10px;
justify-content: center;
gap: 0.5%;
}
.card {
margin:4px;
width: 32.2% !important;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.smallCard {
margin:3px;
width: 35% !important;
box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
section:nth-child(odd) {
background: linear-gradient(to top, rgb(213, 213, 213), rgb(151, 151, 151));
}
section:nth-child(even) {
background: linear-gradient(to top, rgb(151, 151, 151), rgb(213, 213, 213));
}
.link {
color: rgb(12, 125, 163);
}
.icon {
cursor: pointer;
}