-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
124 lines (102 loc) · 1.79 KB
/
index.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
115
116
117
118
119
120
121
122
123
124
@font-face {
font-family: Vazir;
src: url('./fonts/Vazir.ttf')
}
* {
font-family: Vazir;
}
html {
height: 100%;
margin: 0;
}
body {
display: flex;
align-items: center;
height: 100%;
margin: 0;
background-color: #06172a;
color: white;
}
.side-container {
display: flex;
flex-direction: column;
height: 100%;
width: 300px;
border-left: solid 1px #504f51;
}
.meetings-list {
display: flex;
flex-direction: column;
flex: 1;
width: 100%;
overflow-y: auto;
border-bottom: solid 1px #504f51;
}
.meeting {
margin: 0 10px 0 10px;
cursor: pointer;
}
.meeting:hover {
background-color: #091e42;
}
.meeting + .meeting {
border-top: solid 1px #605f61;
}
.meeting-code {
font-size: small;
margin-top: -5px;
color: #cfcfcf;
}
.add-meeting-form {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 200px;
}
.main-container {
width: 100%;
display: flex;
flex-direction: column;
}
h1, h2 {
width: max-content;
margin-left: auto;
margin-right: auto;
margin-bottom: 0.5rem;
}
#main-form {
display: flex;
flex-direction: column;
margin-left: auto;
margin-right: auto;
align-items: center;
}
input {
margin-top: 5px;
}
input:focus {
outline: none;
}
.text-input {
width: 100px;
background-color: rgba(0, 0, 0, 0);
border: solid 2px #0f70d7;
border-radius: 2px;
caret-color: white;
color: inherit;
}
.submit {
background-color: #0f70d7;
border-style: solid;
border-color: #0f70d7;
border-radius: 2px;
padding: 4px;
color: inherit;
min-width: 70%;
cursor: pointer;
}
.submit:focus, .submit:hover {
background-color: #1460aa;
border-color: #1460aa;
}