-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (60 loc) · 1.05 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
* {
box-sizing: border-box;
}
@font-face {
font-family: Oswald;
src: url('Oswald-VariableFont_wght.ttf') format('truetype');
}
html,
body {
margin: 0px;
padding: 0px;
font-family: Oswald, sans-serif;
}
body {
height: 100vh;
}
.gradient {
background-color: #8BC6EC;
background-image: linear-gradient(145deg, #8BC6EC 0%, #9599E2 100%);
background-repeat: no-repeat;
}
.container {
height: 90vh;
}
header {
text-align: center;
padding-top: 2rem;
}
h1 {
font-size: 3rem;
}
main {
margin: 0px auto;
width: 95vw;
max-width: 700px;
display: flex;
flex-direction: column;
align-items: center;
}
#haikuText {
text-align: center;
font-size: 2rem;
}
#getHaiku {
font-size: 1.2rem;
padding: 7px 10px;
border-radius: 5px;
border: 2px solid #111;
background-color: rgba(255,255,255,.3);
cursor: pointer;
box-shadow: none;
}
#getHaiku:hover,
#getHaiku:focus,
#getHaiku:active {
background-color: rgba(255,255,255,.5);
}
footer {
text-align: center;
}