-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (95 loc) · 1.84 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #373B44; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #4286f4, #373B44); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #4286f4, #373B44); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
main {
border-radius: 10px;
background-color: white;
width: 422px;
padding: 20px 10px;
}
main .heading
{
text-align: center;
font-size: 1.1rem;
margin-bottom: 10px;
}
main .quote_line
{
text-align: center;
font-size: 1rem;
font-weight: 600;
font-style: italic;
margin-bottom: 3px;
}
main .quoteby
{
display: flex;
justify-content: flex-end;
align-items: center;
font-size: 0.9rem;
font-weight: bold;
font-style: normal;
color: #2980b9;
}
main .quoteby::selection
{
color: white;
background-color: rgb(237, 100, 180);
}
main .border .emoji
{
display: flex;
justify-content: flex-start;
align-items: center;
gap: 5px;
margin-bottom: 10px;
cursor: pointer;
}
main .border .emoji .emojis
{
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 32px;
border:2px solid #2980b9;
color: #2980b9;
border-radius: 50%;
text-align: center;
margin: 8px 3px;
}
main .border .emoji .emojis:hover
{
opacity: 1;
border: none;
background-color: rgb(12, 64, 79);
color: white;
}
main .btn button
{
display: block;
width: 100%;
padding: 0.5rem;
color: white;
background-color: rgb(85, 152, 179);
font-size: 1.1rem;
cursor: pointer;
border: none;
}
main .btn button:hover
{
background-color: #2980b9;
border-radius: 5px;
letter-spacing: 3px;
}