forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (87 loc) · 1.53 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
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');
* {
margin: 0;
padding: 0;
text-align: center;
box-sizing: border-box;
user-select: none;
transition: all 0.8s;
}
body {
background-color: #000;
color: #fff;
font-family: 'Fredericka the Great', cursive;
}
.container {
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#heading {
font-size: 1.8rem;
text-decoration: underline;
letter-spacing: 12px;
width: 100%;
}
form {
font-size: 1.2rem;
margin: 2rem 0;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}
form .form-group {
margin-bottom: 15px;
}
form .form-group label {
display: block;
margin-bottom: 10px;
}
input {
margin-bottom: 10px;
padding: 5px;
font-size: 1rem;
}
.error-message {
font-size: 1.2rem;
}
button {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
font-size: 1.2rem;
cursor: pointer;
border: none;
}
.table {
color: #fff;
width: 100%;
}
.row {
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: space-around;
}
.col {
flex: 1 1 48%;
margin: 1%;
}
@media (min-width: 600px) {
#heading {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.col {
flex: 1 1 31%;
margin: 1%;
}
}
@media (min-width: 768px) {
#heading {
font-size: 3rem;
margin-bottom: 1.5rem;
}
}