-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (66 loc) · 1.4 KB
/
styles.css
File metadata and controls
69 lines (66 loc) · 1.4 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
* {
box-sizing: border-box;
}
body{
background-color: rgb(116, 84, 143);
background-image: url(https://ximera.osu.edu/mooculus/calculus3/vectorFields/egField.png);
background-image: norepeat;
justify-content: start;
}
.onediv{
color:goldenrod;
background-color:black;
background-image: linear-gradient();
border-radius: 10px;
height: 900px;
width: 450px;
border: 7px solid rgb(136, 84, 71);
/* padding: 10px; */
flex-direction: column;
display: flex;
margin: auto;
}
.caseButton{
background-color: rgb(0, 255, 242);
color: midnightblue;
width: 15%;
height:90px;
display: flex;
border-radius: 8px;
justify-content: center;
align-items: center;
margin: 2px auto;
font-size: 30px;
/* Display: flex;
justify-content:center; */
/* flex-wrap: wrap; */
}
.caseButton:hover{
background-color: chocolate;
border: gold;
}
.buttonDouble{
width: 30%;
}
.caseButtonContainer{
width:360px;
height: 150px;
display: flex;
/* flex-wrap: wrap; */
align-content: center;
margin: 7px auto;
justify-content: center;
/* align-items: center; */
}
.screen{
width: 375px;
height: 100px;
margin: 7px auto;
background-color: moccasin;
color: black;
font-weight: 400;
display: flex;
justify-content: left;
/* justify-items: flex-end; */
align-items: center;
}