-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (67 loc) · 1.19 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
* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
text-align: center;
display: flex;
flex-direction: column;
margin: 0;
height: 100vh;
background-color: navy;
}
#main {
font-size: 6em;
flex-basis: 20vh;
display: flex;
justify-content: center;
align-items: center;
background-color: white;
}
header, footer {
height: 5em;
background-color: navy;
color: white;
padding: 1%;
}
header {
font-size: 1em;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Lucida Sans', 'Lucida Sans Regular', sans-serif;
}
footer {
font-size: 1.5em;
flex-grow: 1;
}
textarea, textarea:focus {
width: 95%;
height: 200%;
font-size: .75em;
padding: .4em;
border-radius: .4em;
outline: none;
}
#rangeBox {
margin: .5em;
}
button {
font-size: .75em;
border-radius: .3em;
border: none;
padding: .4em .8em;
box-shadow: 0 4px rgb(90, 90, 90);
}
button:focus {
outline: none;
}
button:hover {
filter: brightness(.75);
}
button:active {
transform: translateY(4px);
box-shadow: none;
}
input[type='range'] {
width: 70%;
}