-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (96 loc) · 1.49 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
108
109
110
111
112
113
114
115
116
body{
display:flex;
flex-direction: column;
justify-content: center;
align-items: start;
background: #1A1A2E;
margin-top:120px;
}
#compliment
{
font-family: IBM Plex Mono;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 15px;
color: #E7E7E7;
padding:5px;
color:white;
background-color: #0f3460;
border-radius: 24px;
}
.Datetime
{
margin-left: 25%;
}
.date
{
font-family: Bungee Inline;
font-style: normal;
font-weight: normal;
font-size: 36px;
line-height: 43px;
color: #E94560;
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.time
{
font-family: Bungee Hairline;
font-style: normal;
font-weight: normal;
font-size: 144px;
line-height: 100px;
color: #FFFFFF;
mix-blend-mode: normal;
}
.message
{
margin-top:20px;
font-family: IBM Plex Mono;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 15px;
color: #E7E7E7;
padding:5px;
color:white;
background-color: #0f3460;
border-radius: 24px;
width:300px;
}
.message2
{
margin-left: 55%;
}
#search
{
margin-top:20px;
font-family: IBM Plex Mono;
font-style: normal;
font-weight: normal;
font-size: 15px;
line-height: 15px;
outline: none;
padding:5px;
color:white;
background-color: #e94560;
border:none;
border-radius: 24px;
width:300px;
}
.container
{ margin-top: 50px;
display:flex;
flex-direction: column;
margin-left:25%;
}
.searchbar
{
border: 5px solid green;
width:300px;
}
::placeholder
{
color:white;
opacity: 0.4;
}