forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (83 loc) · 1.44 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
* {
box-sizing: border-box;
}
body {
background-color: rgb(244, 127, 146);
font-family: 'Arial', sans-serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.about {
font-weight: bold;
color: rgb(134, 0, 139);
}
.container {
width: 70%;
background-color: rgb(254, 254, 229);
border-radius: 1rem;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
text-align: center;
margin-bottom: 20px;
}
.heading {
font-size: 2.5rem;
color: rgb(134, 0, 139);
font-weight: bold;
}
.input {
font-weight: bold;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
padding: 20px;
}
.input label {
font-size: 1.5rem;
color: rgb(134, 0, 139);
font-weight: bold;
}
.input input {
width: 80%;
padding: 10px;
font-size: 1.2rem;
border-radius: 0.5rem;
border: 2px solid darkblue;
}
.output {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}
.output button {
padding: 10px 20px;
font-size: 1.5rem;
color: white;
background-color: rgb(134, 0, 139);
border: none;
border-radius: 0.5rem;
cursor: pointer;
}
.output button:hover {
background-color: rgb(9, 0, 139);
}
.output-box {
margin-top: 20px;
width: 80%;
background-color: rgb(224, 242, 255);
padding: 15px;
border-radius: 0.5rem;
text-align: center;
}
p {
font-size: 1.5rem;
color: darkblue;
font-weight: bold;
}