-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (51 loc) · 1.22 KB
/
style.css
File metadata and controls
69 lines (51 loc) · 1.22 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
* {margin:0;padding:0;border:0;background:transparent;outline:none;text-decoration:none;outline:none;font-family:inherit;box-sizing:border-box;}
ol, ul, li {list-style:none;display:block;}
table {border-collapse: collapse;border-spacing:0;}
a img {border: none;}
button,
a{cursor: pointer; color: inherit;}
textarea{resize: none;}
button,
input,
textarea,
select{appearance: none !important; -webkit-appearance: none !important; border-radius: 0;}
body{
background-color: #184a45;
font-family: 'Montserrat', sans-serif;
}
.container {
width: 100%;
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
}
.box {
width: 100%;
max-width: 600px;
min-height: 200px;
padding: 60px 10px;
margin: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
background-color: #f49880;
border-radius: 2px;
box-shadow: 0 0 100px #000;
}
.box p{
color: #184a45;
}
.box p:nth-child(1) {
padding-bottom: 10px;
font-size: 20px;
font-weight: 300;
}
.box p:nth-child(2) {
font-size: 60px;
line-height: 60px;
text-transform: uppercase;
font-weight: 800;
}