-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (84 loc) · 1.5 KB
/
styles.css
File metadata and controls
102 lines (84 loc) · 1.5 KB
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
*, ::before, ::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #1c1c1c;
display: flex;
height: 100vh; /*important to state for centering*/
color: white;
}
.card {
display: flex;
flex-direction: column;
padding: 100px 40px;
margin: auto;
width: 550px;
height: 550px;
background-color: #1f2937;
}
.top {
display: flex;
flex-direction: column;
width: 100%;
}
h1 {
font-family: 'Karla', sans-serif;
font-size: 40px;
}
button {
border: none;
background: none;
margin-top: 50px;
background: #10B981;
max-width: 190px;
font-family: 'Inter', sans-serif;
border-radius: 6px;
padding: 9px 17px 9px 15px;
gap: 12px;
color: white;
margin-bottom: 35px;
transition-duration: 0.4s;
}
button:hover {
background: #33f1b1;
}
button:active{
background:#32a680;
}
p {
margin-top: 10px;
font-family: 'Inter', sans-serif;
}
.green {
color: #4adf86;
}
.break {
border: 1px solid #2f3e53;
}
.bottom {
margin-top: 35px;
display: flex;
justify-content: space-between;
}
.rectangle {
display: inline;
width: 210px;
height: 40px;
background: #273549;
border-radius: 6px;
color: #55f991;
font-family: 'Inter',sans-serif;
text-align: center;
}
@media (max-width: 620px) {
.bottom {
display: flex;
flex-direction: column;
align-items: center;
}
.rectangle {
margin: 2% 0;
}
}