-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (96 loc) · 1.61 KB
/
styles.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
/*
scroll left container
style small btns
*/
html,
body {
margin: 0;
font-family: 'Kanit', sans-serif;
display: flex;
}
.left-side-list {
width: 20vw;
height: 100vh;
overflow: scroll;
background-color: rgb(33, 33, 67);
color: aliceblue;
display: flex;
flex-direction: column;
align-items: center;
}
.header {
width: 100%;
border-bottom: 3px solid aliceblue;
font-size: larger;
display: flex;
justify-content: center;
}
.student-container {
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 10px;
}
.add {
background-color: red;
border: none;
color: aliceblue;
font-size: large;
font-weight: bold;
width: 20px;
height: 20px;
border-radius: 2px;
cursor: pointer;
}
.minus {
background-color: green;
border: none;
color: aliceblue;
font-size: large;
width: 20px;
height: 20px;
border-radius: 2px;
cursor: pointer;
/* text-align: center;
text-decoration: none;
display: inline-block; */
}
.center-container {
background-color: rgb(212, 214, 232);
width: 80vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 30px;
}
.select-btn {
background-color: rgb(33, 33, 67);
color: aliceblue;
border: none;
padding: 20px 125px;
border-radius: 4px;
cursor: pointer;
}
@keyframes example {
0% {
color: black;
}
25% {
color: rgb(15, 157, 67);
}
50% {
color: rgb(238, 32, 159);
}
100% {
color: black;
}
}
.animatedH1 {
animation-name: example;
animation-duration: 4s;
}
.highlightedUser {
color: rgb(238, 32, 159);
}