forked from assembler-institute/php-server-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
187 lines (178 loc) · 3.12 KB
/
style.css
File metadata and controls
187 lines (178 loc) · 3.12 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
body {
background-image: url("assets/white.jpg");
}
form {
min-width: 350px;
max-width: 370px;
display: flex;
flex-direction: column;
margin: 20px auto;
align-items: center;
gap: 20px;
text-align: center;
font-size: 20px;
}
.form-input{
width: 80%;
height: 1.5rem;
margin: 0 auto;
display: block;
border-radius: 5px;
border: 1px solid grey;
}
.form-div {
display: flex;
flex-direction: column;
width: 100%;
}
#message {
font-size: 12px;
position: relative;
}
.error {
color: red;
display:none;
}
.notDisplayMessage{
display:none;
}
.border {
--x: 50%;
--y: 50%;
position: relative;
appearance: none;
padding: 1em 2em;
color: white;
outline: none;
border-radius: 20px;
border: 2px solid transparent;
background: linear-gradient(rgb(212, 109, 19), rgb(233, 230, 218)) padding-box, radial-gradient(farthest-corner at var(--x) var(--y), #0f0f0f, #db9c1e) border-box;
}
.button{
color:white;
background-color:#171716;
border-radius:10px;
height: 2rem;
border: 2px;
width: 30%;
cursor: pointer;
margin: 20px auto;
}
#navigation, #navigation h1, body, .sidebar ul{
margin:0;
padding:0;
}
.sidebar h2{
margin-bottom: 0px;
}
h2{
color: #E39653;
}
header{
background-color: rgba(203, 96, 29, 0.705);
color: #DCCAC5;
padding: 10px;
}
h1{
font-size: 70px;
text-align: center;
}
#div1{
width: 500px;
margin: 0 auto;
}
div article{
transition: box-shadow 0.4 ease;
background-color: rgba(212, 125, 32, 0.598);
margin: 1rem 0;
border-radius: 0.7rem;
color: #DCCAC5;
padding: 0.5px;
cursor: pointer;
}
div article h2, div article p{
margin: 1rem;
}
div article:hover{
box-shadow: 0 0.1rem 0.4rem rgba(200, 202, 197, 0.2);
}
footer{
background-color: rgba(203, 96, 29, 0.705);
color: #DCCAC5;
padding: 10px;
}
.symbol{
position: fixed;
top: 30px;
}
a{
color: #E29E64;
text-decoration: none;
}
.total .sidebar{
position: fixed;
left: 0;
top: 0;
width: 20vw;
height: 100vh;
background: rgba(212, 125, 32, 0.932);
}
.total .sidebar h2{
text-align: center;
line-height: 90px;
border-bottom: 1px solid #c5700f;
margin-bottom: 0px;
}
.total .sidebar ul li{
color:white;
list-style: none;
padding: 15px;
border-top: 1px solid rgba(0,0,0,01);
border-bottom: 1px solid rgba(220,202,197,01);
}
i{
margin-right: 8px;
}
.red{
position: absolute;
bottom: 10px;
width: 20vw;
text-align: center;
}
footer{
background: rgb(203, 96, 29);
}
.social{
display: flex;
position: relative;
place-content: flex-end;
}
.social a{
margin: 0px 10px;
font-size: 25px;
}
.social a:hover{
transition: 1.5s;
transform: rotate(360deg);
}
.social a i{
margin: 0 auto;
}
footer p{
text-align: center;
}
.total .sidebar ul li:hover{
padding-left: 40px;
background: grey;
cursor: pointer;
}
.logg{
color:white;
background-color:#171716;
border-radius:10px;
height: 2rem;
border: 2px;
width: 20%;
cursor: pointer;
margin: 20px auto;
}