forked from GaMoCh/ACG-Trabalho_Grafos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
119 lines (98 loc) · 1.61 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
:root {
font-family: sans-serif;
height: 100vh;
background-color: #eceff4;
}
body {
height: inherit;
margin: 0;
}
#header,
#footer {
display: flex;
justify-content: center;
align-items: center;
background-color: #4c566a;
box-sizing: border-box;
padding: 20px;
}
#header {
height: 50px;
}
#footer {
height: 250px;
}
#main {
display: flex;
justify-content: center;
align-items: center;
height: calc(100vh - 300px);
}
#title {
color: #d8dee9;
}
#container {
height: inherit;
width: 100%;
}
#form {
display: flex;
flex-direction: column;
justify-content: space-around;
height: 100%;
width: 250px;
}
input {
border: none;
border-radius: 15px;
padding: 10px;
transition: all 0.5s;
}
.form-section {
display: flex;
justify-content: center;
align-items: stretch;
}
.form-section > label {
color: #d8dee9;
}
input[type="file"] {
display: none;
}
input[type="file"]:invalid + label {
border-color: #bf616a;
}
input[type="file"]:valid + label {
border-color: #a3be8c;
}
form:invalid button[type="submit"] {
background-color: #4c566a;
border-color: #b48ead;
}
*:focus {
outline: none;
border: 5px solid #8fbcbb;
}
.input-file,
button {
display: inline-block;
background-color: #4c566a;
font-size: 16px;
border: 5px solid #88c0d0;
color: #d8dee9;
border-radius: 15px;
padding: 6px 12px;
cursor: pointer;
text-align: center;
width: 100%;
transition: all 0.5s;
}
.input-file:hover,
form:invalid button[type="submit"]:hover,
button:hover {
background-color: #2e3440;
color: #d8dee9;
}
button:active {
transform: translateY(2px);
}