-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (69 loc) · 1.45 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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Source Sans Pro', sans-serif;
transition: all 0.5s;
color: #fff;
}
body {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
background-color: #222242;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
width: fit-content;
}
.wrapper {
width: fit-content;
height: fit-content;
flex-direction: column;
justify-content: center;
align-items: center;
display: flex;
margin: 1rem;
padding: 2rem 4rem;
border-radius: 20px;
font-size: 2.5rem;
background-color: #414170
}
@media screen and (max-width:500px) {
.wrapper{
padding: 2rem 3rem;
}
}
.buttons {
align-items: center;
justify-content: center;
display: flex;
flex-wrap: wrap;
margin: 1rem 1rem;
}
.text{
font-size: 4rem;
}
button {
font-weight: bold;
font-size: 1.3rem;
background-color: #222242;
padding: 10px 38px;
border: 1px solid #A9A9A9;
border-radius: 28px;
cursor: pointer;
color: #fff;
transition: all .2s ease;
outline: 0;
margin: .5rem
}
button:active{
background-color: #fff;
color: #000;
}