-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
123 lines (105 loc) · 2.2 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
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@1,300&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "nunito";
color: #000;
}
.container {
width: 100%;
min-height: 100%;
background-color: #08AEEA;
background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
color: #fff;
min-width: 150%;
position: fixed;
}
.inner-container {
margin: 60px 300px;
border: 1px solid #fff;
padding: 50px;
background: #fff;
border-radius: 20px;
width: 650px;
height: inherit;
}
.input-area h1 {
font-size: 40px;
margin-bottom: 20px;
}
.input-area input {
width: 350px;
font-size: 20px;
background: rgb(241, 240, 240);
padding: 20px;
border: none;
border-radius: 20px;
outline: none;
}
.input-area button {
padding: 20px;
font-size: 20px;
font-weight: 700;
border: 1px solid #2AF598;
background-color: transparent;
color: #fff;
border-radius: 40px;
cursor: pointer;
transition: all 0.4s;
margin-left: 20px;
color: #000;
}
.input-area button:hover {
background-color: #2AF598;
border-color: #2AF598;
color: #fff;
}
::placeholder {
color: #000;
}
.output-area h1 {
margin-top: 15px;
font-size: 30px;
font-weight: 800;
}
.output-area p {
margin-top: 20px;
font-size: 25px;
border: 1px solid #08AEEA;
border-radius: 20px;
padding: 10px;
font-weight: 600;
}
.output-area p {
display: flex;
justify-content: space-between;
}
a {
text-decoration: none;
}
span {
cursor: pointer;
border: 1px solid lightslategrey;
padding: 5px;
border-radius: 5px;
transition: all 0.3s;
width: 30px;
height: inherit;
text-align: center;
}
span:hover {
background-color: lightslategrey;
}
.cross-button {
padding: 5px;
border: 1px solid lightgray;
border-radius: 10px;
cursor: pointer;
background-color: inherit;
font-size: 20px;
transition: all 0.4s;
}
.cross-button:hover {
background-color: lightgray;
}