-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesSE.css
More file actions
88 lines (81 loc) · 1.48 KB
/
stylesSE.css
File metadata and controls
88 lines (81 loc) · 1.48 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
/* ----------------- Class CSS -----------------*/
/* navbar background color */
.nb-background-color{
background-color:#25CB87;
}
/* navbar link text properties */
.nbMenuItem{
font-size:25px;
margin-left:10px;
margin-right:10px;
color:black;
}
/* authors.html */
.about{
width: 400px;
margin: auto;
}
.about-team{
color:black;
}
.authors{
background-color:#b6d3c4;
}
/* index.html */
.showcase{
background-color: #9dd4b8;
}
.showColor{
color:#202020;
font-weight:bold;
}
.overview{
background-color: #b6d3c4;
}
/* Procedure.html */
.procedure{
background-color: #b6d3c4;
padding:1px;
}
.howTo{
font-size:20px;
}
.ovPadLeft{
padding-left:20px;
}
.ovPadRight{
padding-right:20px;
}
.icon-white{
color:white;
}
.footer{
background-color:#25CB87; /* footer color */
}
.small-20{
/* width:20%;
height:20%; */
}
/* ----------------- ID CSS -----------------*/
/* -----------------Underline Animation CSS -----------------*/
.hover-underline-animation {
display: inline-block;
position: relative;
/*color: #0087ca;*/
}
.hover-underline-animation:after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #eae6e6;
/*transform-origin: bottom right;*/
transition: transform 0.35s ease-out;
}
.hover-underline-animation:hover:after {
transform: scaleX(1);
/*transform-origin: bottom left;*/
}