forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
134 lines (118 loc) · 2.88 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
128
129
130
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=Protest+Riot&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Protest Riot", sans-serif;
font-weight: 400;
font-style: normal;
letter-spacing: 1.5px;
}
.main-container {
height: 100vh;
width: 100vw;
background: #6441A5;
background: -webkit-linear-gradient(to right, #2a0845, #6441A5);
background: linear-gradient(to right, #2a0845, #6441A5);
display: flex;
justify-content: center;
align-items: center;
}
.container {
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
/* border: 2px solid white; */
background: #485563;
background: -webkit-linear-gradient(to right, #29323c, #485563);
background: linear-gradient(to right, #29323c, #485563);
padding: 2rem;
box-shadow: 0px 0px 20px white, 0px 0px 40px white;
border-radius: 10px;
}
.container h1 {
font-size: 3.5rem;
color: gold;
text-shadow: 0px 0px 20px rgb(180, 158, 32);
text-align: center;
}
.select {
display: flex;
justify-content: space-evenly;
align-items: center;
gap: 2rem;
padding: 0rem 2rem;
/* border: 2px solid white; */
}
.select h2 {
font-size: 2.5rem;
color: #ff6b6b;
text-shadow: 0px 0px 20px #954545;
text-align: center;
}
select {
font-size: 1.5rem;
outline: none;
border: none;
padding: 0.2rem 0.5rem;
border-radius: 5px;
}
.submit-btn {
border: 2px solid white;
border-radius: 5px;
font-size: 1.6rem;
padding: 1rem 2rem;
text-shadow: 0px 0px 20px #dc8a87, 0px 0px 40px #dc8a87;
background: #e52d27;
background: -webkit-linear-gradient(to right, #b31217, #e52d27);
background: linear-gradient(to right, #b31217, #e52d27);
cursor: pointer;
transition: all 0.2s ease-in-out;
display: block;
}
.submit-btn.hide {
display: none;
}
.submit-btn2 {
border: 2px solid white;
border-radius: 5px;
font-size: 1.6rem;
padding: 1rem 2rem;
text-shadow: 0px 0px 20px #dc8a87, 0px 0px 40px #dc8a87;
background: #e52d27;
background: -webkit-linear-gradient(to right, #b31217, #e52d27);
background: linear-gradient(to right, #b31217, #e52d27);
cursor: pointer;
transition: all 0.2s ease-in-out;
display: block;
}
.submit-btn2.hide {
display: none;
}
.submit-btn:hover {
transform: scale(1.05);
transition: all 0.2s ease-in-out;
box-shadow: 0px 0px 20px white;
}
.submit-btn2:hover {
transform: scale(1.05);
transition: all 0.2s ease-in-out;
box-shadow: 0px 0px 20px white;
}
.output-section {
font-size: 3.5rem;
text-transform: uppercase;
color: #ffa751;
display: block;
}
.output-section.hide {
display: none;
}
@media screen and (max-width : 400px) {
.select {
flex-direction: column;
}
}