-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (92 loc) · 1.45 KB
/
style.css
File metadata and controls
125 lines (92 loc) · 1.45 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
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
body {
margin:0;
padding:0;
height:120vh;
display:flex;
flex-direction:column;
font-family: 'Inter', sans-serif;
}
header {
position:fixed;
justify-content:space-between;
display:flex;
width:100%;
height:3rem;
}
ul {
list-style-type: none;
}
li {
display: inline;
margin:2rem;
}
.logo {
height: 3rem;
}
.button-container {
align-items:center;
display:flex;
justify-content: center;
}
.button1 {
display:flex;
justify-content: center;
align-items: center;
width: 7rem;
height: 2rem;
background-color: #fff;
border:1px solid #80858c;
border-radius:5px;
margin:0.5rem;
}
.button2 {
display:flex;
justify-content: center;
align-items: center;
width: 7rem;
height: 2rem;
background-color: #4a46ea;
color: #fff;
border:1px solid #80858c;
border-radius:5px;
margin:0.5rem;
}
.container {
display:flex;
justify-content: space-between;
}
.main-container {
display:flex;
flex:2;
}
.main {
display:flex;
flex:1;
flex-direction:column;
justify-content: center;
margin-left:3rem;
}
.icon {
height:2rem;
padding:0.5rem;
}
.icons {
display:flex;
}
p {
color:#80858c;
}
.chat {
height:5rem;
}
.footer {
display:flex;
flex:1;
justify-content: flex-end;
}
h1 {
font-size: 3rem;
}
.purple {
color: #4a46ea;
}