-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (98 loc) · 1.81 KB
/
styles.css
File metadata and controls
116 lines (98 loc) · 1.81 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
*{
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body{
background-color: #000;
color: #FFF;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.logo{
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 156px;
margin-bottom: 126px;
width: 583px;
}
h3{
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom: 23px;
font-size: 32px;
font-weight: 400;
width: 299px;
}
.left-input{
margin-right: 62px;
}
.left-input, .right-input {
border: 1px solid rgba(255, 255, 255, 0.20);
background: rgba(255, 255, 255, 0.25);
border-radius: 14px;
width: 342px;
padding-left: 20px;
font-size: 40px;
font-weight: 500;
color: #FFF;
opacity: 0.7;
}
.raffle{
width: 342px;
height: 72px;
padding: 0px 76px;
border-radius: 10px;
background: #AEC346;
margin-top: 105px;
text-align: center;
font-weight: 700;
line-height: 2.5px;
font-size: 36px;
color: #FFF;
cursor: pointer;
}
button:hover{
opacity: 0.8;
}
button:active{
opacity: 0.5;
}
@media screen and (max-width: 800px){
body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
.logo{
width: 270px;
margin-top: 65px;
}
h3 {
font-size: 22px;
width: auto;
}
.left-input, .right-input{
width: auto;
font-size: 25px;
display: block;
margin-left: auto;
margin-right: auto;
}
.left-input{
margin-bottom: 10px;
}
.raffle {
font-size: 25px;
width: auto;
height: 60px;
margin-top: 50px;
}
}