-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobalcss.css
More file actions
81 lines (68 loc) · 1.41 KB
/
globalcss.css
File metadata and controls
81 lines (68 loc) · 1.41 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
body{
background-color: #18181b;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.main {
margin-top:15%;
margin-right: 25%;
margin-left: 25%;
}
.flex-container {
display: flex;
flex-direction: row;
justify-content: space-evenly;
background-color: #18181b;
padding: 0px;
margin-bottom: 0.5%;
height: 49%;
margin-top: 0px;
}
.flex-item-video {
order: 0;
border: 2px solid #303032;
width: 60%;
}
.flex-item-chat {
order:1;
border: 2px solid #303032;
width: 20%;
}
.flex-container-welcome {
display: flex;
flex-direction: row;
justify-content: center;
background-color: #18181b;
padding: 0px;
align-items: center;
}
.button {
background-color: #8a0cfb;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
}
input[type=text] {
padding: 12px 20px;
margin: 8px;
background-color: #4c4c4f;
box-sizing: border-box;
border: 1px solid #878789;
-webkit-transition: 0.5s;
border-radius: 4px;
transition: 0.5s;
outline: none;
align-content: center;
color: #878789
}
input[type=text]:focus {
border: 3px solid #772ce8;
background-color: #000000;
border-radius: 4px;
color: white;
}