-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (92 loc) · 1.65 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
108
109
110
111
112
113
114
115
116
117
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Open+Sans&display=swap');
* {
padding: 0;
margin: 0%;
box-sizing: border-box;
}
html {
font-size: 22px;
padding: 0;
margin: 0;}
body {
background-color: white;
}
header {
width: 100%;
grid-area: header;
background-color: #3669FF;
padding: 5px;
text-align: center;
}
h1 {
font-family: 'Open Sans';
font-size: 3rem;
color: white;
margin: auto;
}
h2, h3, h4, p, li, label, input{
font-family: 'Open Sans';
}
main {
display: flex;
flex-direction: row;
padding: 5% 10%;
align-content: space-between;
}
#input {
flex-basis: 400px;
flex-shrink: 0;
flex-grow: 1;
max-width: 600px;
min-width: 300px;
padding: 20px;
text-align: left;
}
#intro {
margin: 0px 60px 20px 0px;
padding: 0;
text-align: left;
}
#search {
margin: 0 60px 20px 0;
text-align: left;
}
form {
text-align: left;
margin-left: 0;
}
.cycle-button {
background-color: #3669FF;
color: white;
display: inline-block;
padding: 0.5em 1.5em;
margin: 0.5em;
border: none;
box-shadow: rgb(129, 129, 129) , 1px, 1px;
border-radius: 2em;
transition: 0.2s;
}
.cycle-button:hover {
background-color: #1953ff;
}
.cycle-button:focus {
border: none;
}
#submit {
margin-top: 20px;
margin-left: 0;
}
.output-hidden {
display: none;
}
.output-display {
display: inline-block;
text-align: left;
max-width: 600px;
word-wrap: break-word;
}
@media screen and (max-width: 1000px) {
main {
flex-direction: column;
}
}