-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (90 loc) · 1.37 KB
/
styles.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
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #333;
}
section {
margin-top: 20px;
padding: 20px;
background-color: #fff;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav {
text-align: center;
}
button {
margin: 5px;
padding: 10px 20px;
font-size: 16px;
color: #fff;
background-color: #333;
border: none;
border-radius: 4px;
cursor: pointer;
}
h2 {
text-align: center;
color: #333;
}
.username {
font-weight: bold;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
label {
font-size: 16px;
}
.form-container {
display: flex;
flex-direction: column;
align-items: center;
}
.form-box {
background-color: #f8f8f8;
padding: 2rem;
margin-bottom: 1rem;
border-radius: 5px;
}
.buttons-box {
display: flex;
gap: 1rem;
}
.buttons-box button {
padding: 0.5rem 1rem;
font-size: 1rem;
}
#type {
margin-bottom: 1rem;
}
#submit {
margin-top: 1rem;
}
.form-fragments-container {
display: flex;
}
.form-container {
flex: 1;
}
.fragments-container {
margin-left: 1rem;
flex: 1;
}
.fragments-box {
background-color: #f8f8f8;
padding: 2rem;
border-radius: 5px;
}