-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_css.css
80 lines (68 loc) · 1.4 KB
/
index_css.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
body {
background-color: #E2E1EC;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.rot_card_container {
background-color: #FFFFFF;
display: flexbox;
margin: 16px;
padding: 32px;
border-radius: 16px;
}
.footer {
font-weight: bold;
}
.rot_information_container {
display: flexbox;
flex-wrap: wrap;
}
.title {
color: #3D56BE;
text-justify: auto;
}
.header{
color: #3D56BE;
}
.subtitle {
color: #3D56BE;
font-size: 1.5em;
font-weight: bold;
}
.link {
color: #3D56BE;
}
.container {
display: flexbox;
flex-wrap: wrap;
}
.input_container{
display: block;
width: 100%;
}
.input_container > textarea {
height: 10em;
max-height: 10em;
width: 100%;
max-width: 100%;
box-sizing: border-box;
padding: 8px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
border: 2px solid black;
border-radius: 8px;
}
.input_container > textarea:focus {
outline: none !important;
border: 2px solid #3D56BE;
border-radius: 8px;
}
@media only screen and (max-width: 900px) {
body {
padding: 0px;
margin: 0px;
}
.rot_card_container {
margin: 0px;
padding: 16px;
border-radius: 0px;
}
}