-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (100 loc) · 1.81 KB
/
style.css
File metadata and controls
117 lines (100 loc) · 1.81 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: inherit;
}
body {
background-color: #4d3030;
font-family: 'Oxygen', sans-serif;
}
#containerMain {
height: 100vh;
width: 100vw;
display: flex;
flex-flow: row;
}
#containerText {
z-index: 30;
height: 100%;
width: 60%;
padding: 12%;
box-shadow: 8px 0px 29px -8px rgba(0,0,0,0.20);
}
#poemEntry {
background-color: transparent;
color: #ebebeb80;
border: none;
outline: none;
height: 100%;
width: 100%;
font-size: 1.5em;
font-weight: 300;
}
::selection {
color: #EBEBEB;
background: #3F2727;
}
::-webkit-resizer {
border: solid #3F2727;
border-width: 0 2px 2px 0;
}
::placeholder {
color: #714747;
}
.callLabel {
cursor: pointer;
margin: 0 0 10px 0;
text-align: right;
font-weight: lighter;
font-size: 2.5em;
}
.arrow {
display: inline-block;
padding: 3px;
margin: 8px 12px;
transform: rotate(45deg);
}
.rhymeArrow {
border: solid #643f3f;
border-width: 0 2px 2px 0;
}
.relatedArrow {
border: solid #4b2f2f;
border-width: 0 2px 2px 0;
}
#containerRhyme {
z-index: 20;
box-shadow: 8px 0px 29px -8px rgba(0,0,0,0.20);
background-color: #3F2727;
height: 100%;
width: 20%;
padding: 1% 2%;
color: #643f3f;
}
#rhymesList {
height: 95%;
overflow-y: scroll;
text-align: center;
line-height: 1.5em;
font-size: 1.5em;
font-weight: lighter;
}
#containerRelated {
background-color: #261717;
height: 100%;
width: 20%;
padding: 1% 2%;
color: #4b2f2f;
}
#relatedList {
height: 95%;
overflow-y: scroll;
text-align: center;
line-height: 1.5em;
font-size: 1.5em;
font-weight: lighter;
}
::-webkit-scrollbar {
display: none;
}