-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
93 lines (76 loc) · 1.19 KB
/
index.css
File metadata and controls
93 lines (76 loc) · 1.19 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body, .jumbotron{
background-color: rgb(220, 252, 246);
color: rgb(94, 107, 121);
}
.jumbotron{
background-color: rgb(223, 244, 248);
background-image: url('./weight2.PNG');
}
.navbar {
background-color: #d2f3f3;
color: rgb(255, 83, 71);
}
.navbar-brand {
font-size: 1.9em;
}
#user-info {
display: flex;
justify-content: end;
align-items: center;
}
#user-name {
font-weight: bold;
font-size: 1.2em;
margin: 0;
}
#avatar-img {
border-radius: 50%;
width: 40px;
margin-left: 10px;
}
#namesList {
min-width: 200px;
}
#table-wrapper {
height: 220px;
overflow: auto;
}
#result-empty, #result-wrapper {
height: 300px;
}
.count-effect {
animation: expendEffect 0.7s linear;
}
@keyframes expendEffect {
from {
transform: scale(1);
}
40% {
transform: scale(1.1);
}
70% {
transform: scale(0.92);
}
to {
transform: scale(1);
}
}
#page-1{
margin-top: 10px;;
}
#page-2{
margin: 20px;
}
#message{
color: red;
font-weight: bold;
margin: 20px;;
}
.navbar-brand{
color: violet;
}