forked from suvelocity/sentimentor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 971 Bytes
/
style.css
File metadata and controls
49 lines (43 loc) · 971 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto&display=swap');
body{
font-family: 'Open Sans', sans-serif;
font-size: large;
text-align: center;
background: rgb(240,225,231);
background: radial-gradient(circle, rgba(240,225,231,1) 4%, rgba(148,187,233,1) 78%);
}
div{
font-family: 'Roboto', sans-serif;
padding: 2px;
}
#cat-photo{
max-width: 50%;
height: auto;
}
.positive{
color: rgb(12, 187, 50);
}
.negative{
color: rgb(204, 61, 61);
}
.neutral{
color: rgb(129, 128, 128);
}
.loader{
content: url("https://c.tenor.com/I6kN-6X7nhAAAAAj/loading-buffering.gif");
width: 70px;
margin: auto;
}
textarea{
border-style: double;
border-width: 1pc;
border-radius: 1pc;
border-color: rgb(135, 162, 194);
font-size: large;
outline: none;
background-color: rgb(182, 205, 231);
}
textarea::placeholder {
font-size: x-large;
text-align: center
}