-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (102 loc) · 2.14 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
html{
margin: 0;
width: 100%;
height: 100%;
}
body{
margin: 0;
width: 100%;
height: 100%;
color: black;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container {
width: 100;
height: 100%;
display: flex;
flex-direction: column;
}
.information{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
min-height: 20vw;
background-color: #4245ffb0;
border-radius: 0vw 0vw 3vw 3vw;
}
.title h1{
color: white;
font-weight: 600;
font-size: 4vw;
}
.information .inputs{
display: flex;
flex-direction: row;
justify-content: space-around;
width: 55vw;
}
.information .inputs input{
width: 40vw;
height: 10vh;
border: none;
border-radius: 1vw;
outline: none;
font-size: 2vw;
}
.information .inputs button{
width: 10vw;
height: 10vh;
border: none;
border-radius: 1vw;
outline: none;
font-size: 1.5vw;
background-color: #484bff98;
color: white;
cursor: pointer;
}
.generated{
display: flex;
flex-wrap: wrap;
margin-top: 1vw;
margin-left: 5%;
width: 90%;
border-radius: 1vw;
background-color: rgb(222, 223, 204);
}
.logo{
display: flex;
justify-content: center;
align-items: center;
margin: 1vw;
width: 20vw;
height: 20vh;
border-radius: 1vw;
background: linear-gradient(90deg, rgba(128,128,218,1) 38%, rgba(0,212,255,1) 100%);
}
.logoColmn{
display: flex;
flex-direction: column;
align-items: center;
margin: 1vw;
width: 20vw;
height: 20vh;
border-radius: 1vw;
background: linear-gradient(90deg, rgba(128,128,218,1) 38%, rgba(0,212,255,1) 100%);
}
.logoColmn i{
color: white;
margin-bottom: -1vw;
margin-top: 1.5vw;
font-size: 2.5vw;
}
.logo i{
color: white;
margin-right: 1vw;
font-size: 2.5vw;
}
.logo h1{
color: white;
font-size: 2.5vw;
}