-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (81 loc) · 1.53 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
*{
padding: 0;
margin: 0;
}
body{
background-color: rgb(24, 23, 23);
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
overflow-x: hidden;
}
.conteiner{
border-radius: 20px;
padding: 40px;
text-align: center;
}
img{
width: 350px;
display: block;
margin: auto;
padding: 20px;
border-radius: 40px;
}
h1{
color: white;
font-size: 50px;
text-align: center;
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
h2{
padding-top: 10px;
color: white;
font-size: 18px;
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
font-style: normal;
letter-spacing: 1px;
}
button{
color: rgb(44, 42, 42);
font-size: 20px;
font-family: "Oswald", sans-serif;
font-optical-sizing: auto;
font-style: normal;
border-radius: 20px;
width: 100%;
background-color: rgb(44, 42, 42);
color: white;
border: none;
padding: 10px;
transition: 0.2s;
}
button:hover{
background-color: black;
cursor: pointer;
}
button:active{
transform: scale(0.9);
transition: 0.2s;
}
@media only screen and (max-width: 600px) {
body{
overflow-x: hidden;
}
h1{
font-size: 24px;
}
h2{
font-size: 10px;
}
button{
width: 50%;
}
img{
width: 270px;
}
}