forked from assembler-institute/php-server-environment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprincipalStyle.css
More file actions
106 lines (89 loc) · 1.38 KB
/
principalStyle.css
File metadata and controls
106 lines (89 loc) · 1.38 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
body {
width: 100%;
height: 100%;
background-image: url("Assets/imagen-principal.png");
background-size: cover;
place-items: center;
display: flex;
justify-content: center;
}
.menu {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 12vh;
background-color: blue;
margin-top: -1.5%;
margin-left: -1.5%;
}
.menu img {
width: 5%;
height: 70%;
margin-left: 2%;
margin-top: 1%;
}
.account {
color: white;
margin-right: 3%;
margin-top: 1%;
cursor: pointer;
}
.account:hover {
background-color: black;
color: aqua;
}
.menu-account {
display: none;
}
.menu-account_show {
background-color: black;
color: white;
width: 10%;
margin-bottom: -10%;
margin-left: 90%;
display: block;
position: absolute;
z-index: 0;
}
.menu-account p:hover {
background-color: red;
}
.container {
width: 100%;
height: 100%;
place-items: center;
display: flex;
flex-direction: column;
justify-content: center;
position: absolute;
margin-bottom: -30%;
z-index: -1;
}
.container h1 {
font: bold 80px/1 arial;
text-transform: uppercase;
color: #c69c1e;
text-shadow: 0 12px 0 #41330a;
font-size: 100px;
}
.content {
width: 80%;
height: 20%;
}
input {
width: 31%;
height: 100%;
text-align: center;
}
select {
width: 31%;
height: 100%;
text-align: center;
}
button {
width: 31%;
height: 100%;
margin-left: 32%;
background-color: skyblue;
}