-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsass.css
More file actions
100 lines (85 loc) · 1.54 KB
/
sass.css
File metadata and controls
100 lines (85 loc) · 1.54 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
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
98
99
100
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background-color: #9b59b6;
font-family: "Lato", sans-serif;
}
h1,
p {
padding: 0;
margin: 0;
}
main {
max-width: 100%;
margin: 0 auto;
}
.modal {
background-color: #ffffff;
max-width: 290px;
margin: 50px auto 0;
border-radius: 5px;
-webkit-box-shadow: 0 2px 12px 0 #3c3c3c;
box-shadow: 0 2px 12px 0 #3c3c3c;
}
@media (min-width: 768px) {
.modal {
max-width: 400px;
margin-top: 120px;
}
}
@media (min-width: 1024px) {
.modal {
max-width: 600px;
margin-top: 150px;
}
}
.modal__header {
border-bottom: 1px solid #2ecc71;
padding: 5px 10px;
}
.modal__header p {
font-family: "Holtwood One SC", serif;
}
.modal__body {
padding: 30px 10px;
}
.modal__body h1 {
font-size: 20px;
margin-bottom: 20px;
}
.modal__footer {
border-top: 1px solid #e74c3c;
padding: 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media (min-width: 768px) {
.modal__footer {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
}
.modal__footer a {
text-decoration: none;
border-radius: 5px;
color: #ffffff;
display: block;
padding: 10px;
min-width: 110px;
text-align: center;
}
.modal__footer a.success {
background-color: #2ecc71;
margin-right: 10px;
}
.modal__footer a.error {
background-color: #e74c3c;
}
/*# sourceMappingURL=sass.css.map */