-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (57 loc) · 1.16 KB
/
styles.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
/* You can add global styles to this file, and also import other style files */
* {
margin: 0;
padding: 0;
}
@font-face {
font-family: 'Steppe-Book';
src: url("./assets/fonts/Steppe-Book.ttf");
}
@font-face {
font-family: 'Steppe-ExtraBold';
src: url("./assets/fonts/Steppe-ExtraBold.ttf");
}
body {
background: #5243F4;
font-family: 'Steppe-Book', sans-serif;
color: white;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.button {
background: white;
border-radius: 60px;
width: 178px;
height: 58px;
box-sizing: border-box;
padding: 18px;
text-align: center;
font-size: 18px;
color: #5243F4;
border: 0;
outline: none;
cursor: pointer;
}
.violet-button {
background-color: #5243F4;
color: white;
}
.violet-button:disabled {
background-color: #343434;
color: gray;
cursor: not-allowed;
}
.button:hover:not(:disabled) {
background-color: #eeeeee;
}
.button.violet-button:hover:not(:disabled) {
background-color: #3b2cd8;
}
.common-title {
font-family: 'Steppe-ExtraBold', sans-serif;
font-size: 60px;
line-height: 100%;
text-align: center;
}