-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (106 loc) · 2.09 KB
/
style.css
File metadata and controls
109 lines (106 loc) · 2.09 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
*{
padding: 0;
margin: 0;
}
body{
/* background-color: #eee; */
/* background: linear-gradient(250deg,purple, blue, black); */
background-size: cover;
font-size: 50px;
font-family: 'Courier New', Courier, monospace;
justify-content: center;
}
h1{
/* margin:10px; */
text-align: center;
}
.container {
height: 650px;
width: 100%;
border: 1px solid;
display: flex;
/* flex-direction: column; */
justify-content: center;
text-align: center;
align-items: center;
flex-wrap: wrap;
position: absolute;
}
.box {
height: 100px;
width: 100px;
margin: 10px;
display: inline-block;
border: 5px solid purple;
position: relative;
}
/* .container .box{
} */
.sym {
/* height: 20px;
width: 20px; */
position: absolute;
top: 40px;
left: 25px;
}
h1{
color: blue;
}
button{
position: absolute;
bottom: 0;
height: 50px;
width: 100px;
border: none;
background-color: blue;
border-radius: 10px;
color: white;
font-size: 20px;
text-transform: uppercase;
padding: 10px;
margin-left: 50%;
margin-top: 20px;
margin-bottom: 5px;
}
@media screen and (max-width : 600px){
body{
background-color: black;
font-size: 30px;
color: white;
padding: 15px;
/* border: 1px solid purple; */
}
h1{
font-size: 40px;
font-family:revert;
letter-spacing: 2px;
text-decoration: blue underline;
}
.box {
height: 60px;
width: 60px;
margin: 7px;
display: inline-block;
border: 2px solid purple;
position: relative;
}
.container {
height: 100vh;
width: auto;
border: none;
display: flex;
/* flex-direction: column; */
justify-content: center;
text-align: center;
align-items: center;
flex-wrap: wrap;
position: absolute;
}
.sym {
/* height: 20px;
width: 20px; */
position: absolute;
top: 24px;
left: 14px;
}
}