-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (73 loc) · 1.18 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
75
76
77
78
79
80
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
align-items: center;
height: 90vh;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: rgb(68, 68, 68);
}
.images{
display: flex;
flex-direction: column;
width:50vh;
padding: 10px;
}
img{
height: auto;
width:100%;
}
.text
{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.text h1{
font-weight: 600;
}
.text p {
margin-top: 1rem;
max-width: 35rem;
align-self: center;
}
.text button{
margin-top: 1rem;
border-radius: 5px;
padding: 18px 34px;
background: rgb(0, 123, 255);
color: white;
border: none;
font-size: 15px;
}
.text a{
text-decoration:none;
color: #fff;
}
.text button:hover{
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.footer{
margin-top: 3rem;
}
@media(max-width:500px)
{
*{
padding:5px;
}
.text p{
font-size: 14px;
}
.footer{
margin-top: 5rem;
}
.images{
width:40vh;
}
}