-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
107 lines (92 loc) · 1.54 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
97
98
99
100
101
102
103
104
105
106
107
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url(./utils/flamenco.jpg);
background-size: cover;
color: white;
height: 100vh;
font-family: Poppins, sans-serif;
font-size: 0.85rem;
}
header h1 {
text-align: left;
padding: 4vh 0;
padding-left: 50px;
}
.wrapper {
height: 100vh;
}
.container {
/*önemli*/
display: flex;
flex-direction: column;
justify-content: left;
align-items: left;
}
.madLibsEdit {
width: 45%;
margin-bottom: 10vh;
padding-left: 50px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.madLibsEdit input[type="text"] {
background-color: transparent;
border: none;
color: red;
text-align: left;
font-size: 1em;
width: 50px;
outline: none;
}
.madLibsEdit input[type="text"]::placeholder {
color: red;
font-size: 12px;
}
.madLibsPreview {
width: 45%;
padding-left: 50px;
text-align: left;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.madLibsPreview input[type="text"] {
border: none;
background-color: transparent;
text-align: left;
font-size: 15px;
width: 50px;
}
.madLibsPreview input[type="text"]::placeholder {
color: red;
}
.madLibsPreview input[type="text"]:focus {
outline: none;
border: none;
}
#speaker-icon-div {
position: absolute;
top: 40px;
right: 40px;
width: 35px;
height: 35px;
}
@media (min-width: 1450px) {
body {
font-size: 17.5px;
}
}
@media (max-width: 768px) {
body {
height: 100%;
}
.container {
display: flex;
flex-direction: column;
}
}