-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
92 lines (86 loc) · 1.83 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');
*{
margin:0;
padding:0;
box-sizing: border-box;
}
html{
font-size: 10px;
}
.container{
width: 100%;
margin:0 auto;
display: flex;
flex-direction: column;
align-items: center;
background-color: #f2f2f2;
height: 90vh;
}
.container .baslik{
margin-top:15px;
font-size: 3.2rem;
font-family: 'Roboto', sans-serif;
color:#fff;
text-shadow: 0px 0px 5px grey;
}
.container .button{
margin-top:50px;
font-size: 1.6rem;
padding:1rem 2rem;
border:1px solid grey;
color:grey;
font-family: 'Roboto', sans-serif;
transition: all 0.5s ease;
}
.container .button:hover{
color:white;
background-color: black;
cursor: pointer;
}
.container .process-screen{
margin-top:15px;
width: 90%;
height: 80vh;
background-color: white;
margin-bottom:10px;
overflow:scroll;
overflow-x:hidden;
scrollbar-color: black;
}
.process-screen::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
.process-screen::-webkit-scrollbar
{
width: 6px;
background-color: #F5F5F5;
}
.process-screen::-webkit-scrollbar-thumb
{
background-color: #000000;
}
.container .process-screen ul{
padding: 1rem 2rem;
list-style: none;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
.container .process-screen ul li{
border-bottom:1px solid black;
width: 100%;
padding:0.5rem;
text-align: center;
}
.container .process-screen ul li a{
font-size: 1.6rem;
color:black;
text-decoration: none;
}
.clicked{
background-color: #70e000;
}