forked from ghostmkg/web-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (59 loc) · 990 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
*::before,
*::after {
box-sizing: border-box;
}
html,
body {
font-size: 10px;
font-family: 'lato', Arial, Helvetica, sans-serif;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: flex-end;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 2rem;
}
.colors {
font-size: 2.5rem;
margin-bottom: 5rem;
}
.color {
background: black;
color: white;
padding: 0.7rem 1rem;
border-radius: 5rem;
display: inline-block;
width: 12rem;
text-align: center;
}
.btn {
border: none;
cursor: pointer;
background: transparent;
font-size: 3rem;
}
.output {
font-size: 1.7rem;
background: black;
color: white;
border-radius: 0.5rem;
padding: 3rem;
width: 50rem;
text-align: center;
}
.info {
font-size: 3rem;
margin-bottom: 10rem;
}