-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (112 loc) · 2.16 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
body {
margin: 0;
font-family: 'Open Sans' sans-serif;
font-weight: 400;
color: whitesmoke;
background-color: hsl(257, 40%, 49%);
}
.top_parent {
background-color: hsl(257, 40%, 49%);
background-image: url(images/bg-desktop.svg);
padding: 3% 6%;
font-family: 'Open Sans' sans-serif;
font-weight: 400;
}
nav {
margin-bottom: 4%;
}
nav img {
height: 40px;
}
.small_parent {
display: grid;
grid-template-columns: 1.5fr 1fr;
/* margin: 20px; */
}
.mockup_img {
width: 95%;
}
.message {
display: flex;
flex-direction: column;
font-family: 'Poppins';
margin: 20px 0px;
}
button {
background-color: whitesmoke;
width: 150px;
height: 50px;
font-size: 20px;
color: magenta;
margin-top: 20px;
font-weight: 600;
border: none;
border-radius: 100px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
/* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
}
button:hover {
background-color: blue;
color: whitesmoke;
}
span {
margin: 10px 0px;
}
.msg_heading {
font-size: 38px;
font-weight: 600;
}
.msg_body {
font-size: 14px;
font-weight: lighter;
line-height: 1.5;
}
.communicate_icons {
display: flex;
flex-direction: row;
justify-content: flex-end;
grid-column: 1/3;
}
.fa_icons {
color: white;
margin: 4px;
padding: 4px;
}
.fa_icons:hover {
color: blue;
}
@media screen and (max-width:500px) {
body {
text-align: center;
}
.top_parent {
background-image: url(images/bg-mobile.svg);
background-repeat: no-repeat;
}
nav {
text-align: left;
margin-top: 25px;
}
.small_parent {
display: flex;
flex-direction: column;
}
.mockup_box {
margin: 40px auto;
}
.msg_heading {
font-size: 25px;
}
.msg_body {
font-size: 14px;
}
button {
margin: 10px auto;
margin-bottom: 40px;
width: 80%;
}
.communicate_icons {
justify-content: center;
align-items: center;
}
}