generated from lunaiwa/A.A.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
90 lines (86 loc) · 1.53 KB
/
main.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
body {
background-color: #e5e5e5;
padding-right: 20px;
padding-left: 20px;
padding-bottom: 300px;
font-family: ravioli;
}
/*Title of the page*/
h1{
color:#FF5733;
font-size: 70px;
text-align: center;
padding: 20px;
font-family: ravioli;
}
/*Subtitles on the Page*/
h2{
color:#4CAF50;
font-size: 30px;
text-align: center;
font-family: ravioli;
}
/*Line and Page Seperation*/
h3{
color:#ffff;
font-size: 50px;
text-align: center;
padding: 10px;
margin: 20px;
font-family: ravioli;
}
/* h4 headings */
h4 {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
}
/*Descriptions under the Subtitles*/
p {
color: #5dd761;
font-size: 25px;
padding: 30px;
text-align: justify;
letter-spacing: -1px;
max-width: 900px;
margin: 0 auto;
font-family: ravioli;
}
/*Fonts using DaFont*/
@font-face {
font-family: ravioli;
src: url("../ravioli.ttf");
}
@font-face {
font-family: nexa;
src: url("../nexa.ttf");
}
/* text area */
textarea {
width: 100%;
padding: 10px;
margin: 5px 0;
border: 1px solid #ccc;
border-radius: 4px;
}
/* send SMS button */
.btn {
background-color: #007BFF;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
margin-top: 10px;
}
/* hover effect button */
.btn:hover {
background-color: #0056b3;
}
/* center and margin */
.containerSMS {
text-align: center;
max-width: 400px;
margin: 0 auto;
}