-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (59 loc) · 1.05 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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
*{
font-family: 'Lato', sans-serif;
box-sizing: border-box;
padding: 0;
margin: 0;
}
/* COLORS and FONTS */
body {
color: white;
text-align: center;
font-size: 24px;
line-height: 3;
background: darkslateblue;
}
header {
background: darkslateblue;
}
footer {
background: rgb(73, 6, 136);
}
.content {
display: flex;
flex-direction: column;
}
.container{
background: #49159c;
}
@media all and (min-width: 768px) {
main {
flex: 2;
order: 2;
min-height: 67.1vh;
}
}
#first-part{
background: #ffffff49;
display: flex;
flex-direction: column;
}
.button{
border-radius: 4px;
background-color: #41209b;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 15px;
padding: 10px;
width: 140px;
transition: all 0.5s;
cursor: pointer;
margin: 22px;
}
.button span{
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}