-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
107 lines (92 loc) · 1.75 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
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
* {
color: #fff;
font-family: "Open Sans", sans-serif;
}
body {
margin: 0;
padding: 0;
background-color: #343541;
display: flex;
}
h1 {
font-size: 33px;
font-weight: 600;
padding: 200px 0;
}
.side-bar {
background-color: #202123;
width: 244px;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: space-between;
height: 100vh;
width: 100%;
}
.bottom-section {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.info {
color: rgba(255, 255, 255, 0.5);
font-size: 11px;
padding: 10px;
}
input {
border: none;
background-color: rgba(255, 255, 255, 0.05);
width: 100%;
font-size: 20px;
padding: 12px 15px;
border-radius: 5px;
box-shadow: rgb(0, 0, 0, 0.05) 0x 54px 55px, rgb(0, 0, 0, 0.05) 0, -12px 30px,
rgb(0, 0, 0, 0.05) 0, 4px 6px, rgb(0, 0, 0, 0.05) 0, 12px 3px,
rgb(0, 0, 0, 0.09) 0, -3px 5px;
}
input:focus {
outline: none;
}
.input-container {
position: relative;
width: 100%;
max-width: 650px;
}
.input-container #submit {
position: absolute;
right: 0;
bottom: 15px;
cursor: pointer;
}
button {
border: solid 0.5px rgba(255, 255, 255, 0.5);
background-color: transparent;
border-radius: 5px;
padding: 10px;
margin: 10px;
}
.side-bar footer {
border-top: solid 0.5px rgba(255, 255, 255, 0.5);
padding: 10px;
margin: 10px;
}
.history {
padding: 10px;
margin: 10px;
display: flex;
flex-direction: column;
height: 100%;
}
.history p {
cursor: pointer;
}