-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
122 lines (105 loc) · 2.25 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
117
118
119
120
121
122
body, html {
font-size: 16px;
font-family: "Cormorant Garamond";
font-weight: 500;
height: 100%;
margin: 0;
padding: 0;
position: relative;
}
body input[type=text], html input[type=text] {
font-size: 1em;
font-family: "Roboto", sans-serif;
background: none;
outline: none;
border: none;
}
body #send-msg, html #send-msg {
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
display: flex;
}
body #send-msg input, html #send-msg input {
width: 100%;
padding: 5px 20px;
outline: none;
border: none;
}
body #send-msg button, html #send-msg button {
font-size: 1.6em;
background-color: transparent;
border: none;
outline: none;
padding: 5px;
width: 100px;
}
body .wrapper, html .wrapper {
overflow-y: auto;
height: calc(100% - 50px);
}
body .wrapper #conversation, html .wrapper #conversation {
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: flex-end;
list-style-type: none;
margin: 0;
padding: 0;
font-family: "Roboto";
font-weight: 400;
}
body .wrapper #conversation .dot, html .wrapper #conversation .dot {
padding: 2px;
}
body .wrapper #conversation .pseudo, html .wrapper #conversation .pseudo {
font-weight: 900;
}
body .wrapper #conversation .info, html .wrapper #conversation .info {
font-family: "Cormorant Garamond";
font-style: italic;
font-size: 1.2em;
}
body .wrapper #conversation li, html .wrapper #conversation li {
padding: 5px 10px;
}
body .content, html .content {
width: 100vw;
position: absolute;
top: 50vh;
left: 10vw;
transform: translateY(-50%);
}
body .content input[type=text], html .content input[type=text] {
font-size: 2.6em;
font-weight: 900;
width: 80%;
max-width: 600px;
}
body .content #pseudo-choice, html .content #pseudo-choice {
font-weight: 700;
font-size: 1.6em;
margin: 10px;
}
body .content #pseudo-label, html .content #pseudo-label {
font-weight: 700;
font-size: 1.6em;
margin: 10px;
}
body .content input, html .content input {
padding: 5px;
}
body .content button, html .content button {
background-color: transparent;
font-size: 2em;
border: none;
padding: 7px;
outline: none;
}
@media (min-width: 800px) {
body, html {
font-size: 22px;
}
}
/*# sourceMappingURL=styles.css.map */