-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle4.css
More file actions
118 lines (100 loc) · 1.86 KB
/
style4.css
File metadata and controls
118 lines (100 loc) · 1.86 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* RESET */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* GENERAL */
.header{
background-color: #f5deb3;
position: static;
top: 1;
}
h1{
font-size: 2em;
}
.h1{
text-align: center;
font-size: 4rem;
text-shadow: 2px 3px 2px rgba(4, 40, 51, 0.575);
color: #bd3f3ff3;
}
.p{
font-size: 26px;
text-shadow: none;
}
.tab{
display: flex;
justify-content: space-evenly;
background-color: #dbc5a7;
margin: 6px 0 6px 0;
padding: 6px;
}
.tab a{
text-decoration: none;
font-size: 22px;
color: black;
cursor: pointer;
border-radius: 50px;
padding: 8px;
background-color: seashell;
border-inline: 10px;
}
.tab a:hover{
color: bisque;
transform: scale(1.1);
animation: all;
}
.container p{
margin: 10px;
border: 1px solid #bd3f3ff3;
font-size: 30px;
font-style: italic;
font-weight: bold;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
border-radius: 50px;
padding: 20px;
box-shadow: 2px 2px 3px red;
}
.whatsapp{
display: flex;
justify-content: center;
flex-grow: 1;
}
.whatsapp button{
font-size: 50px;
padding: 20px;
font-family: Georgia, 'Times New Roman', Times, serif;
margin: 10px;
border: none;
border-radius: 50px;
background-color: #dbae73;
text-shadow: 2px 2px #222;
color: antiquewhite;
margin-bottom: 1.2em;
margin-top: 30px;
}
.whatsapp a:hover{
transition: all 2s ease-in-out;
transform: scale(1.1);
}
.ending{
display: flex;
flex-grow: 1;
bottom: 0;
background-color: #faebd757;
justify-content: center;
font: 20px sans-serif;
margin-left: 3px;
}
.ending p{
background-color: #a52a2a;
border-radius: 6px;
padding: 5px;
}
ul{
list-style: none;
}
body{
background-color: #deb887;
}